From b52d6431fe2842bf2940ed56386881904f2b2d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Mo=CC=88ding?= Date: Mon, 17 Jun 2024 18:07:36 +0200 Subject: [PATCH] Improve string parsing Single and double quoted strings are now parsed as different entities. This lays the ground for different escape sequences in both types of strings. Also it will allow the detection of questionable language elements like non-working interpolation in a single quoted string. --- grammar.js | 23 +- src/node-types.json | 309 +- src/parser.c | 98638 ++++++++-------- src/scanner.c | 26 +- test/corpus/assignments.txt | 2 +- test/corpus/chaining-arrows.txt | 16 +- test/corpus/class-in-class.txt | 2 +- test/corpus/class-parameters.txt | 6 +- test/corpus/class.txt | 6 +- test/corpus/comments.txt | 2 +- test/corpus/conditionals.txt | 10 +- test/corpus/data-structures.txt | 26 +- test/corpus/data-types.txt | 4 +- test/corpus/element-reference.txt | 18 +- test/corpus/expressions-binary.txt | 4 +- test/corpus/expressions-boolean.txt | 12 +- test/corpus/functions.txt | 14 +- test/corpus/literal.txt | 12 +- test/corpus/node-definition.txt | 2 +- test/corpus/resource-collectors.txt | 2 +- test/corpus/resource-defaults.txt | 6 +- test/corpus/resource-definition.txt | 2 +- test/corpus/resource-scope.txt | 8 +- test/corpus/resource-usage.txt | 32 +- test/corpus/selector.txt | 10 +- test/corpus/statement-functions.txt | 4 +- test/corpus/string-interpolation.txt | 18 +- test/corpus/strings.txt | 22 +- test/corpus/type-declaration.txt | 14 +- .../corpus/virtual-and-exported-resources.txt | 4 +- 30 files changed, 50244 insertions(+), 49010 deletions(-) diff --git a/grammar.js b/grammar.js index 14c154b..20404ac 100644 --- a/grammar.js +++ b/grammar.js @@ -69,8 +69,8 @@ module.exports = grammar({ externals: $ => [ $.qmark, $.selbrace, - $._fixed_string, - $._expandable_string, + $._sq_string, + $._dq_string, $._heredoc_start, $._heredoc_body, $._heredoc_end, @@ -602,11 +602,22 @@ module.exports = grammar({ // Literals (dynamic and static) - _quotedtext: $ => choice($.string, $.heredoc), + _quotedtext: $ => choice( + $.single_quoted_string, + $.double_quoted_string, + $.heredoc + ), + + single_quoted_string: $ => seq( + "'", + repeat($._sq_string), + "'", + ), - string: $ => choice( - seq("'", repeat($._fixed_string), "'"), - seq('"', repeat(choice($._expandable_string, $.interpolation, $.escape_sequence)), '"'), + double_quoted_string: $ => seq( + '"', + repeat(choice($._dq_string, $.interpolation, $.escape_sequence)), + '"', ), heredoc: $ => seq( diff --git a/src/node-types.json b/src/node-types.json index 858fecb..0e117b9 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -94,6 +94,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -159,7 +163,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -259,6 +263,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -328,7 +336,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -465,6 +473,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -530,7 +542,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -630,6 +642,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -699,7 +715,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -847,6 +863,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -912,7 +932,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -1012,6 +1032,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -1081,7 +1105,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -1199,6 +1223,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -1264,7 +1292,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -1413,6 +1441,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -1478,7 +1510,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -1622,6 +1654,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -1687,7 +1723,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -1890,6 +1926,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -1955,7 +1995,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -2127,6 +2167,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -2192,7 +2236,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -2296,6 +2340,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -2361,7 +2409,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -2479,6 +2527,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -2544,7 +2596,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -2648,6 +2700,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -2713,7 +2769,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -2882,6 +2938,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -2947,7 +3007,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -3047,6 +3107,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -3112,7 +3176,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -3240,6 +3304,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -3305,7 +3373,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -3405,6 +3473,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -3470,7 +3542,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -3555,6 +3627,25 @@ ] } }, + { + "type": "double_quoted_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + } + ] + } + }, { "type": "else", "named": true, @@ -3669,6 +3760,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -3734,7 +3829,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -3838,6 +3933,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -3907,7 +4006,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -4075,6 +4174,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -4140,7 +4243,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -4253,6 +4356,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -4318,7 +4425,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -4457,6 +4564,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -4522,7 +4633,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -4606,6 +4717,10 @@ "type": "dotted_name", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "heredoc", "named": true @@ -4615,7 +4730,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true } ] @@ -4795,6 +4910,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -4860,7 +4979,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -4964,6 +5083,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -5029,7 +5152,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -5243,6 +5366,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -5308,7 +5435,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -5408,6 +5535,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -5473,7 +5604,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -5615,6 +5746,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -5680,7 +5815,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -5788,6 +5923,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -5853,7 +5992,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -5971,6 +6110,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -6036,7 +6179,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -6140,6 +6283,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -6205,7 +6352,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -6323,6 +6470,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -6388,7 +6539,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -6488,6 +6639,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -6553,7 +6708,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -6671,6 +6826,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -6736,7 +6895,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -6836,6 +6995,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "exported", "named": true @@ -6909,7 +7072,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -7073,6 +7236,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -7138,7 +7305,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -7251,6 +7418,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -7316,7 +7487,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -7447,6 +7618,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -7512,7 +7687,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -7551,6 +7726,11 @@ } } }, + { + "type": "single_quoted_string", + "named": true, + "fields": {} + }, { "type": "splat_parameter", "named": true, @@ -7646,6 +7826,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -7711,7 +7895,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -7811,6 +7995,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -7876,15 +8064,15 @@ "named": true }, { - "type": "statement", + "type": "single_quoted_string", "named": true }, { - "type": "statement_function", + "type": "statement", "named": true }, { - "type": "string", + "type": "statement_function", "named": true }, { @@ -7945,25 +8133,6 @@ ] } }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "interpolation", - "named": true - } - ] - } - }, { "type": "type_alias", "named": true, @@ -8128,6 +8297,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -8193,7 +8366,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -8306,6 +8479,10 @@ "type": "define_definition", "named": true }, + { + "type": "double_quoted_string", + "named": true + }, { "type": "false", "named": true @@ -8371,7 +8548,7 @@ "named": true }, { - "type": "string", + "type": "single_quoted_string", "named": true }, { @@ -8781,11 +8958,11 @@ }, { "type": "type", - "named": false + "named": true }, { "type": "type", - "named": true + "named": false }, { "type": "undef", diff --git a/src/parser.c b/src/parser.c index 0ef8517..5a03c53 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1652 -#define LARGE_STATE_COUNT 581 -#define SYMBOL_COUNT 196 +#define STATE_COUNT 1666 +#define LARGE_STATE_COUNT 585 +#define SYMBOL_COUNT 197 #define ALIAS_COUNT 4 #define TOKEN_COUNT 98 #define EXTERNAL_TOKEN_COUNT 9 @@ -114,8 +114,8 @@ enum ts_symbol_identifiers { aux_sym_comment_token1 = 88, sym_qmark = 89, sym_selbrace = 90, - sym__fixed_string = 91, - sym__expandable_string = 92, + sym__sq_string = 91, + sym__dq_string = 92, sym__heredoc_start = 93, sym__heredoc_body = 94, sym__heredoc_end = 95, @@ -195,34 +195,35 @@ enum ts_symbol_identifiers { sym_variable = 169, sym_reserved_word = 170, sym__quotedtext = 171, - sym_string = 172, - sym_heredoc = 173, - sym_regex = 174, - sym_array = 175, - sym__collection_entries = 176, - sym__collection_entry = 177, - sym_hash = 178, - sym__hashpairs = 179, - sym_hashpair = 180, - sym__hash_entry = 181, - sym_collection_entry_keyword = 182, - sym_keyword = 183, - sym_statement_function_keywords = 184, - sym__class = 185, - sym_default = 186, - sym_undef = 187, - sym__boolean = 188, - sym_comment = 189, - aux_sym__expressions_repeat1 = 190, - aux_sym_if_repeat1 = 191, - aux_sym_string_repeat1 = 192, - aux_sym_string_repeat2 = 193, - aux_sym_heredoc_repeat1 = 194, - aux_sym_regex_repeat1 = 195, - alias_sym_access = 196, - alias_sym_array_element = 197, - alias_sym_attribute_list = 198, - alias_sym_condition = 199, + sym_single_quoted_string = 172, + sym_double_quoted_string = 173, + sym_heredoc = 174, + sym_regex = 175, + sym_array = 176, + sym__collection_entries = 177, + sym__collection_entry = 178, + sym_hash = 179, + sym__hashpairs = 180, + sym_hashpair = 181, + sym__hash_entry = 182, + sym_collection_entry_keyword = 183, + sym_keyword = 184, + sym_statement_function_keywords = 185, + sym__class = 186, + sym_default = 187, + sym_undef = 188, + sym__boolean = 189, + sym_comment = 190, + aux_sym__expressions_repeat1 = 191, + aux_sym_if_repeat1 = 192, + aux_sym_single_quoted_string_repeat1 = 193, + aux_sym_double_quoted_string_repeat1 = 194, + aux_sym_heredoc_repeat1 = 195, + aux_sym_regex_repeat1 = 196, + alias_sym_access = 197, + alias_sym_array_element = 198, + alias_sym_attribute_list = 199, + alias_sym_condition = 200, }; static const char * const ts_symbol_names[] = { @@ -317,8 +318,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_comment_token1] = "comment_token1", [sym_qmark] = "qmark", [sym_selbrace] = "selbrace", - [sym__fixed_string] = "_fixed_string", - [sym__expandable_string] = "_expandable_string", + [sym__sq_string] = "_sq_string", + [sym__dq_string] = "_dq_string", [sym__heredoc_start] = "_heredoc_start", [sym__heredoc_body] = "_heredoc_body", [sym__heredoc_end] = "_heredoc_end", @@ -398,7 +399,8 @@ static const char * const ts_symbol_names[] = { [sym_variable] = "variable", [sym_reserved_word] = "reserved_word", [sym__quotedtext] = "_quotedtext", - [sym_string] = "string", + [sym_single_quoted_string] = "single_quoted_string", + [sym_double_quoted_string] = "double_quoted_string", [sym_heredoc] = "heredoc", [sym_regex] = "regex", [sym_array] = "array", @@ -418,8 +420,8 @@ static const char * const ts_symbol_names[] = { [sym_comment] = "comment", [aux_sym__expressions_repeat1] = "_expressions_repeat1", [aux_sym_if_repeat1] = "if_repeat1", - [aux_sym_string_repeat1] = "string_repeat1", - [aux_sym_string_repeat2] = "string_repeat2", + [aux_sym_single_quoted_string_repeat1] = "single_quoted_string_repeat1", + [aux_sym_double_quoted_string_repeat1] = "double_quoted_string_repeat1", [aux_sym_heredoc_repeat1] = "heredoc_repeat1", [aux_sym_regex_repeat1] = "regex_repeat1", [alias_sym_access] = "access", @@ -520,8 +522,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_comment_token1] = aux_sym_comment_token1, [sym_qmark] = sym_qmark, [sym_selbrace] = sym_selbrace, - [sym__fixed_string] = sym__fixed_string, - [sym__expandable_string] = sym__expandable_string, + [sym__sq_string] = sym__sq_string, + [sym__dq_string] = sym__dq_string, [sym__heredoc_start] = sym__heredoc_start, [sym__heredoc_body] = sym__heredoc_body, [sym__heredoc_end] = sym__heredoc_end, @@ -601,7 +603,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_variable] = sym_variable, [sym_reserved_word] = sym_reserved_word, [sym__quotedtext] = sym__quotedtext, - [sym_string] = sym_string, + [sym_single_quoted_string] = sym_single_quoted_string, + [sym_double_quoted_string] = sym_double_quoted_string, [sym_heredoc] = sym_heredoc, [sym_regex] = sym_regex, [sym_array] = sym_array, @@ -621,8 +624,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_comment] = sym_comment, [aux_sym__expressions_repeat1] = aux_sym__expressions_repeat1, [aux_sym_if_repeat1] = aux_sym_if_repeat1, - [aux_sym_string_repeat1] = aux_sym_string_repeat1, - [aux_sym_string_repeat2] = aux_sym_string_repeat2, + [aux_sym_single_quoted_string_repeat1] = aux_sym_single_quoted_string_repeat1, + [aux_sym_double_quoted_string_repeat1] = aux_sym_double_quoted_string_repeat1, [aux_sym_heredoc_repeat1] = aux_sym_heredoc_repeat1, [aux_sym_regex_repeat1] = aux_sym_regex_repeat1, [alias_sym_access] = alias_sym_access, @@ -996,11 +999,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__fixed_string] = { + [sym__sq_string] = { .visible = false, .named = true, }, - [sym__expandable_string] = { + [sym__dq_string] = { .visible = false, .named = true, }, @@ -1320,7 +1323,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_string] = { + [sym_single_quoted_string] = { + .visible = true, + .named = true, + }, + [sym_double_quoted_string] = { .visible = true, .named = true, }, @@ -1400,11 +1407,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_string_repeat1] = { + [aux_sym_single_quoted_string_repeat1] = { .visible = false, .named = false, }, - [aux_sym_string_repeat2] = { + [aux_sym_double_quoted_string_repeat1] = { .visible = false, .named = false, }, @@ -1632,117 +1639,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 2, - [5] = 5, - [6] = 5, - [7] = 5, - [8] = 5, - [9] = 5, + [4] = 4, + [5] = 2, + [6] = 2, + [7] = 4, + [8] = 4, + [9] = 2, [10] = 2, - [11] = 5, - [12] = 5, - [13] = 2, + [11] = 4, + [12] = 4, + [13] = 4, [14] = 2, - [15] = 2, - [16] = 5, - [17] = 2, - [18] = 5, - [19] = 19, - [20] = 5, + [15] = 4, + [16] = 2, + [17] = 4, + [18] = 4, + [19] = 2, + [20] = 4, [21] = 2, - [22] = 2, - [23] = 5, + [22] = 22, + [23] = 4, [24] = 2, [25] = 25, [26] = 26, [27] = 27, - [28] = 28, + [28] = 26, [29] = 29, - [30] = 26, - [31] = 28, + [30] = 30, + [31] = 30, [32] = 29, - [33] = 27, - [34] = 27, - [35] = 28, + [33] = 29, + [34] = 30, + [35] = 27, [36] = 26, - [37] = 29, - [38] = 29, - [39] = 26, - [40] = 27, - [41] = 28, - [42] = 29, - [43] = 26, + [37] = 26, + [38] = 27, + [39] = 29, + [40] = 30, + [41] = 26, + [42] = 27, + [43] = 29, [44] = 27, - [45] = 28, - [46] = 29, - [47] = 26, - [48] = 27, - [49] = 28, - [50] = 26, - [51] = 27, + [45] = 27, + [46] = 27, + [47] = 29, + [48] = 29, + [49] = 30, + [50] = 30, + [51] = 26, [52] = 52, - [53] = 53, + [53] = 52, [54] = 54, - [55] = 55, - [56] = 55, - [57] = 55, - [58] = 58, - [59] = 52, - [60] = 60, + [55] = 52, + [56] = 56, + [57] = 52, + [58] = 52, + [59] = 59, + [60] = 54, [61] = 52, - [62] = 52, - [63] = 55, - [64] = 55, - [65] = 52, - [66] = 52, - [67] = 55, + [62] = 54, + [63] = 54, + [64] = 54, + [65] = 54, + [66] = 66, + [67] = 67, [68] = 68, - [69] = 68, - [70] = 70, + [69] = 66, + [70] = 67, [71] = 71, [72] = 72, - [73] = 70, + [73] = 73, [74] = 74, - [75] = 68, - [76] = 70, - [77] = 72, - [78] = 78, + [75] = 71, + [76] = 76, + [77] = 67, + [78] = 74, [79] = 79, [80] = 74, - [81] = 81, + [81] = 73, [82] = 82, - [83] = 81, - [84] = 68, - [85] = 70, - [86] = 72, + [83] = 71, + [84] = 67, + [85] = 66, + [86] = 71, [87] = 74, - [88] = 81, - [89] = 81, - [90] = 74, - [91] = 72, - [92] = 72, - [93] = 70, - [94] = 68, - [95] = 74, - [96] = 81, - [97] = 68, - [98] = 70, - [99] = 72, - [100] = 81, - [101] = 74, - [102] = 102, - [103] = 102, - [104] = 104, - [105] = 105, + [88] = 66, + [89] = 71, + [90] = 67, + [91] = 73, + [92] = 73, + [93] = 74, + [94] = 74, + [95] = 71, + [96] = 73, + [97] = 66, + [98] = 73, + [99] = 66, + [100] = 67, + [101] = 101, + [102] = 101, + [103] = 103, + [104] = 101, + [105] = 101, [106] = 106, [107] = 107, - [108] = 102, - [109] = 102, + [108] = 101, + [109] = 101, [110] = 110, [111] = 111, - [112] = 102, + [112] = 112, [113] = 113, - [114] = 102, + [114] = 114, [115] = 115, [116] = 116, [117] = 117, @@ -1770,16 +1777,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [139] = 139, [140] = 140, [141] = 141, - [142] = 117, - [143] = 118, + [142] = 142, + [143] = 143, [144] = 144, [145] = 145, [146] = 146, [147] = 147, - [148] = 148, + [148] = 136, [149] = 149, [150] = 150, - [151] = 151, + [151] = 128, [152] = 152, [153] = 153, [154] = 154, @@ -1823,8 +1830,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [192] = 192, [193] = 193, [194] = 194, - [195] = 117, - [196] = 118, + [195] = 195, + [196] = 196, [197] = 197, [198] = 198, [199] = 199, @@ -1852,367 +1859,367 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [221] = 221, [222] = 222, [223] = 223, - [224] = 224, + [224] = 136, [225] = 225, - [226] = 226, - [227] = 226, - [228] = 226, - [229] = 226, - [230] = 226, - [231] = 54, - [232] = 232, + [226] = 128, + [227] = 227, + [228] = 227, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 230, [233] = 233, - [234] = 232, - [235] = 226, - [236] = 236, + [234] = 229, + [235] = 233, + [236] = 233, [237] = 233, - [238] = 58, - [239] = 236, - [240] = 79, - [241] = 241, - [242] = 107, - [243] = 241, + [238] = 233, + [239] = 233, + [240] = 76, + [241] = 68, + [242] = 242, + [243] = 242, [244] = 244, - [245] = 110, - [246] = 111, - [247] = 106, - [248] = 104, - [249] = 120, - [250] = 125, - [251] = 135, - [252] = 116, - [253] = 123, - [254] = 118, - [255] = 117, - [256] = 139, - [257] = 134, - [258] = 133, - [259] = 132, - [260] = 119, - [261] = 131, - [262] = 128, - [263] = 127, - [264] = 126, - [265] = 137, - [266] = 124, - [267] = 136, - [268] = 141, - [269] = 115, - [270] = 130, - [271] = 271, - [272] = 138, - [273] = 140, - [274] = 121, - [275] = 122, - [276] = 146, - [277] = 150, - [278] = 117, - [279] = 144, - [280] = 118, - [281] = 147, - [282] = 149, - [283] = 145, - [284] = 205, - [285] = 188, - [286] = 286, - [287] = 193, - [288] = 179, - [289] = 174, - [290] = 286, - [291] = 171, - [292] = 117, - [293] = 167, - [294] = 161, - [295] = 159, - [296] = 181, - [297] = 156, - [298] = 177, - [299] = 222, - [300] = 118, - [301] = 301, - [302] = 223, - [303] = 221, - [304] = 219, - [305] = 305, - [306] = 217, - [307] = 301, - [308] = 202, - [309] = 176, - [310] = 194, - [311] = 160, - [312] = 301, - [313] = 175, - [314] = 152, - [315] = 187, - [316] = 186, - [317] = 184, - [318] = 318, - [319] = 178, - [320] = 173, - [321] = 180, - [322] = 301, - [323] = 170, - [324] = 169, - [325] = 325, - [326] = 168, - [327] = 189, - [328] = 301, - [329] = 166, - [330] = 165, - [331] = 164, - [332] = 163, - [333] = 162, - [334] = 158, - [335] = 157, - [336] = 155, - [337] = 154, - [338] = 301, - [339] = 153, - [340] = 213, - [341] = 182, - [342] = 183, - [343] = 201, - [344] = 286, - [345] = 185, - [346] = 190, - [347] = 347, - [348] = 191, - [349] = 349, - [350] = 197, - [351] = 351, - [352] = 192, - [353] = 172, - [354] = 203, - [355] = 198, - [356] = 199, - [357] = 200, - [358] = 220, - [359] = 204, - [360] = 286, - [361] = 206, - [362] = 207, - [363] = 208, - [364] = 218, - [365] = 216, - [366] = 215, - [367] = 209, - [368] = 286, - [369] = 286, - [370] = 211, - [371] = 214, - [372] = 151, - [373] = 212, - [374] = 374, - [375] = 375, - [376] = 374, - [377] = 374, - [378] = 378, - [379] = 379, - [380] = 375, - [381] = 374, - [382] = 375, - [383] = 375, - [384] = 384, - [385] = 374, - [386] = 375, - [387] = 375, - [388] = 374, - [389] = 389, - [390] = 390, - [391] = 389, - [392] = 392, + [245] = 103, + [246] = 110, + [247] = 112, + [248] = 111, + [249] = 113, + [250] = 114, + [251] = 140, + [252] = 141, + [253] = 125, + [254] = 132, + [255] = 139, + [256] = 138, + [257] = 121, + [258] = 123, + [259] = 124, + [260] = 127, + [261] = 115, + [262] = 120, + [263] = 119, + [264] = 122, + [265] = 118, + [266] = 137, + [267] = 130, + [268] = 136, + [269] = 126, + [270] = 117, + [271] = 133, + [272] = 134, + [273] = 131, + [274] = 142, + [275] = 116, + [276] = 128, + [277] = 277, + [278] = 143, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 146, + [284] = 284, + [285] = 284, + [286] = 136, + [287] = 128, + [288] = 288, + [289] = 284, + [290] = 290, + [291] = 291, + [292] = 282, + [293] = 282, + [294] = 147, + [295] = 284, + [296] = 145, + [297] = 149, + [298] = 150, + [299] = 282, + [300] = 284, + [301] = 282, + [302] = 282, + [303] = 284, + [304] = 189, + [305] = 167, + [306] = 223, + [307] = 190, + [308] = 188, + [309] = 182, + [310] = 158, + [311] = 159, + [312] = 164, + [313] = 313, + [314] = 314, + [315] = 212, + [316] = 178, + [317] = 166, + [318] = 162, + [319] = 170, + [320] = 172, + [321] = 175, + [322] = 180, + [323] = 313, + [324] = 187, + [325] = 314, + [326] = 215, + [327] = 313, + [328] = 221, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 225, + [333] = 213, + [334] = 204, + [335] = 314, + [336] = 195, + [337] = 185, + [338] = 314, + [339] = 199, + [340] = 183, + [341] = 173, + [342] = 160, + [343] = 157, + [344] = 313, + [345] = 156, + [346] = 154, + [347] = 207, + [348] = 186, + [349] = 313, + [350] = 194, + [351] = 176, + [352] = 205, + [353] = 174, + [354] = 211, + [355] = 181, + [356] = 209, + [357] = 152, + [358] = 222, + [359] = 177, + [360] = 313, + [361] = 161, + [362] = 214, + [363] = 153, + [364] = 128, + [365] = 203, + [366] = 200, + [367] = 198, + [368] = 219, + [369] = 314, + [370] = 197, + [371] = 196, + [372] = 193, + [373] = 217, + [374] = 218, + [375] = 216, + [376] = 179, + [377] = 210, + [378] = 220, + [379] = 171, + [380] = 169, + [381] = 136, + [382] = 168, + [383] = 208, + [384] = 165, + [385] = 163, + [386] = 155, + [387] = 191, + [388] = 192, + [389] = 206, + [390] = 314, + [391] = 201, + [392] = 202, [393] = 393, - [394] = 389, - [395] = 393, - [396] = 389, - [397] = 389, - [398] = 398, - [399] = 389, - [400] = 393, + [394] = 394, + [395] = 394, + [396] = 396, + [397] = 396, + [398] = 393, + [399] = 396, + [400] = 400, [401] = 393, - [402] = 393, - [403] = 398, - [404] = 393, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, + [402] = 402, + [403] = 396, + [404] = 396, + [405] = 393, + [406] = 393, + [407] = 393, + [408] = 396, [409] = 409, [410] = 410, [411] = 411, [412] = 412, - [413] = 408, - [414] = 405, + [413] = 413, + [414] = 414, [415] = 415, - [416] = 407, + [416] = 416, [417] = 417, [418] = 418, [419] = 419, - [420] = 419, - [421] = 419, - [422] = 419, - [423] = 423, - [424] = 406, - [425] = 425, - [426] = 426, + [420] = 420, + [421] = 412, + [422] = 414, + [423] = 416, + [424] = 417, + [425] = 418, + [426] = 420, [427] = 427, [428] = 428, - [429] = 419, - [430] = 427, - [431] = 426, + [429] = 429, + [430] = 430, + [431] = 431, [432] = 432, [433] = 433, - [434] = 434, + [434] = 410, [435] = 435, - [436] = 436, + [436] = 411, [437] = 437, - [438] = 438, - [439] = 417, - [440] = 418, - [441] = 441, - [442] = 441, - [443] = 412, - [444] = 411, - [445] = 410, - [446] = 409, - [447] = 408, - [448] = 407, - [449] = 449, - [450] = 417, - [451] = 418, - [452] = 441, - [453] = 405, - [454] = 438, - [455] = 437, - [456] = 436, - [457] = 435, - [458] = 434, - [459] = 433, - [460] = 432, - [461] = 405, - [462] = 441, - [463] = 418, - [464] = 405, - [465] = 417, - [466] = 449, - [467] = 407, - [468] = 408, - [469] = 409, - [470] = 410, - [471] = 411, - [472] = 412, - [473] = 428, - [474] = 427, - [475] = 426, - [476] = 428, - [477] = 427, - [478] = 426, - [479] = 479, - [480] = 428, - [481] = 427, - [482] = 426, - [483] = 428, - [484] = 428, - [485] = 427, - [486] = 426, - [487] = 415, - [488] = 425, - [489] = 406, - [490] = 423, - [491] = 425, - [492] = 406, - [493] = 423, - [494] = 494, - [495] = 425, - [496] = 449, - [497] = 423, - [498] = 425, - [499] = 406, - [500] = 423, - [501] = 412, - [502] = 411, - [503] = 410, - [504] = 504, - [505] = 425, - [506] = 436, - [507] = 406, - [508] = 423, - [509] = 409, - [510] = 432, - [511] = 412, - [512] = 411, - [513] = 410, - [514] = 409, - [515] = 408, - [516] = 407, - [517] = 449, - [518] = 417, + [438] = 419, + [439] = 413, + [440] = 409, + [441] = 410, + [442] = 428, + [443] = 429, + [444] = 432, + [445] = 433, + [446] = 419, + [447] = 437, + [448] = 433, + [449] = 432, + [450] = 429, + [451] = 428, + [452] = 420, + [453] = 418, + [454] = 417, + [455] = 416, + [456] = 414, + [457] = 412, + [458] = 415, + [459] = 413, + [460] = 411, + [461] = 410, + [462] = 431, + [463] = 463, + [464] = 437, + [465] = 435, + [466] = 466, + [467] = 467, + [468] = 409, + [469] = 431, + [470] = 435, + [471] = 471, + [472] = 472, + [473] = 471, + [474] = 472, + [475] = 466, + [476] = 411, + [477] = 467, + [478] = 413, + [479] = 415, + [480] = 433, + [481] = 463, + [482] = 412, + [483] = 427, + [484] = 414, + [485] = 416, + [486] = 471, + [487] = 417, + [488] = 467, + [489] = 419, + [490] = 437, + [491] = 433, + [492] = 432, + [493] = 429, + [494] = 428, + [495] = 420, + [496] = 418, + [497] = 417, + [498] = 416, + [499] = 414, + [500] = 412, + [501] = 415, + [502] = 413, + [503] = 411, + [504] = 432, + [505] = 429, + [506] = 410, + [507] = 431, + [508] = 428, + [509] = 466, + [510] = 410, + [511] = 463, + [512] = 431, + [513] = 409, + [514] = 420, + [515] = 463, + [516] = 437, + [517] = 517, + [518] = 466, [519] = 418, - [520] = 441, - [521] = 433, - [522] = 438, - [523] = 437, - [524] = 436, - [525] = 435, - [526] = 434, - [527] = 433, - [528] = 432, - [529] = 434, - [530] = 435, - [531] = 419, - [532] = 437, - [533] = 412, - [534] = 411, - [535] = 410, - [536] = 409, - [537] = 408, - [538] = 407, - [539] = 449, - [540] = 417, - [541] = 418, - [542] = 441, - [543] = 405, - [544] = 438, - [545] = 437, - [546] = 432, - [547] = 433, - [548] = 434, - [549] = 435, - [550] = 436, - [551] = 437, - [552] = 438, - [553] = 405, - [554] = 438, - [555] = 437, - [556] = 436, - [557] = 425, - [558] = 406, - [559] = 423, - [560] = 435, - [561] = 441, - [562] = 418, - [563] = 438, - [564] = 434, - [565] = 433, - [566] = 432, - [567] = 449, - [568] = 432, - [569] = 433, - [570] = 434, - [571] = 435, - [572] = 436, - [573] = 412, - [574] = 411, - [575] = 410, - [576] = 409, - [577] = 408, - [578] = 407, - [579] = 449, - [580] = 417, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 584, + [520] = 435, + [521] = 417, + [522] = 418, + [523] = 420, + [524] = 416, + [525] = 428, + [526] = 414, + [527] = 466, + [528] = 463, + [529] = 412, + [530] = 472, + [531] = 429, + [532] = 415, + [533] = 419, + [534] = 435, + [535] = 432, + [536] = 433, + [537] = 467, + [538] = 413, + [539] = 411, + [540] = 410, + [541] = 427, + [542] = 431, + [543] = 463, + [544] = 544, + [545] = 409, + [546] = 546, + [547] = 437, + [548] = 427, + [549] = 467, + [550] = 471, + [551] = 472, + [552] = 419, + [553] = 466, + [554] = 427, + [555] = 463, + [556] = 431, + [557] = 415, + [558] = 411, + [559] = 430, + [560] = 467, + [561] = 413, + [562] = 467, + [563] = 409, + [564] = 435, + [565] = 415, + [566] = 412, + [567] = 414, + [568] = 416, + [569] = 417, + [570] = 418, + [571] = 472, + [572] = 471, + [573] = 427, + [574] = 435, + [575] = 409, + [576] = 472, + [577] = 471, + [578] = 419, + [579] = 437, + [580] = 433, + [581] = 432, + [582] = 429, + [583] = 428, + [584] = 420, [585] = 585, [586] = 586, [587] = 587, @@ -2238,1048 +2245,1062 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [607] = 607, [608] = 608, [609] = 609, - [610] = 54, - [611] = 58, - [612] = 79, - [613] = 106, - [614] = 104, - [615] = 111, - [616] = 110, - [617] = 107, - [618] = 138, - [619] = 126, - [620] = 129, - [621] = 120, - [622] = 125, - [623] = 124, - [624] = 135, - [625] = 116, - [626] = 123, - [627] = 139, - [628] = 118, - [629] = 134, - [630] = 133, - [631] = 132, - [632] = 131, - [633] = 128, - [634] = 127, - [635] = 141, - [636] = 117, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 76, + [615] = 68, + [616] = 103, + [617] = 110, + [618] = 112, + [619] = 114, + [620] = 111, + [621] = 113, + [622] = 118, + [623] = 121, + [624] = 123, + [625] = 122, + [626] = 125, + [627] = 127, + [628] = 130, + [629] = 142, + [630] = 140, + [631] = 139, + [632] = 137, + [633] = 116, + [634] = 131, + [635] = 134, + [636] = 128, [637] = 119, - [638] = 115, - [639] = 137, - [640] = 122, - [641] = 121, - [642] = 140, - [643] = 136, - [644] = 130, - [645] = 147, - [646] = 149, - [647] = 146, - [648] = 144, - [649] = 150, + [638] = 120, + [639] = 124, + [640] = 126, + [641] = 135, + [642] = 115, + [643] = 133, + [644] = 141, + [645] = 132, + [646] = 117, + [647] = 136, + [648] = 138, + [649] = 147, [650] = 145, - [651] = 220, - [652] = 212, - [653] = 168, - [654] = 170, - [655] = 204, - [656] = 175, - [657] = 58, - [658] = 176, - [659] = 181, - [660] = 193, - [661] = 169, - [662] = 172, - [663] = 663, - [664] = 173, - [665] = 203, - [666] = 178, - [667] = 191, - [668] = 184, - [669] = 186, - [670] = 188, - [671] = 197, - [672] = 198, + [651] = 146, + [652] = 143, + [653] = 149, + [654] = 150, + [655] = 218, + [656] = 157, + [657] = 657, + [658] = 204, + [659] = 221, + [660] = 220, + [661] = 217, + [662] = 202, + [663] = 206, + [664] = 208, + [665] = 153, + [666] = 214, + [667] = 210, + [668] = 177, + [669] = 174, + [670] = 162, + [671] = 176, + [672] = 178, [673] = 199, - [674] = 200, - [675] = 206, - [676] = 207, - [677] = 218, - [678] = 190, - [679] = 165, - [680] = 217, - [681] = 164, - [682] = 163, - [683] = 162, - [684] = 160, - [685] = 187, - [686] = 54, - [687] = 158, - [688] = 216, - [689] = 215, - [690] = 157, - [691] = 214, - [692] = 151, - [693] = 185, - [694] = 166, - [695] = 211, - [696] = 155, - [697] = 180, - [698] = 179, - [699] = 174, - [700] = 171, - [701] = 167, - [702] = 161, - [703] = 159, - [704] = 154, - [705] = 209, - [706] = 189, - [707] = 156, - [708] = 177, - [709] = 222, - [710] = 223, - [711] = 221, - [712] = 219, - [713] = 205, - [714] = 202, - [715] = 201, - [716] = 153, - [717] = 213, - [718] = 182, - [719] = 194, - [720] = 192, - [721] = 183, - [722] = 208, - [723] = 152, - [724] = 79, - [725] = 725, - [726] = 123, - [727] = 118, - [728] = 139, - [729] = 104, - [730] = 106, - [731] = 117, + [674] = 212, + [675] = 223, + [676] = 190, + [677] = 188, + [678] = 182, + [679] = 158, + [680] = 159, + [681] = 216, + [682] = 161, + [683] = 164, + [684] = 166, + [685] = 170, + [686] = 172, + [687] = 175, + [688] = 169, + [689] = 219, + [690] = 180, + [691] = 181, + [692] = 183, + [693] = 187, + [694] = 195, + [695] = 185, + [696] = 173, + [697] = 160, + [698] = 76, + [699] = 156, + [700] = 68, + [701] = 154, + [702] = 222, + [703] = 207, + [704] = 186, + [705] = 194, + [706] = 205, + [707] = 213, + [708] = 211, + [709] = 209, + [710] = 200, + [711] = 198, + [712] = 197, + [713] = 196, + [714] = 193, + [715] = 189, + [716] = 179, + [717] = 171, + [718] = 203, + [719] = 168, + [720] = 167, + [721] = 165, + [722] = 163, + [723] = 155, + [724] = 152, + [725] = 215, + [726] = 191, + [727] = 201, + [728] = 192, + [729] = 225, + [730] = 103, + [731] = 731, [732] = 111, - [733] = 110, - [734] = 107, - [735] = 137, - [736] = 119, - [737] = 131, - [738] = 133, - [739] = 132, - [740] = 116, - [741] = 134, - [742] = 128, - [743] = 135, - [744] = 124, - [745] = 127, - [746] = 126, - [747] = 125, - [748] = 136, - [749] = 141, - [750] = 120, - [751] = 130, - [752] = 138, - [753] = 140, - [754] = 121, - [755] = 122, - [756] = 115, - [757] = 149, - [758] = 176, - [759] = 160, - [760] = 202, - [761] = 194, - [762] = 205, - [763] = 219, - [764] = 764, - [765] = 221, - [766] = 223, - [767] = 222, - [768] = 203, - [769] = 204, - [770] = 206, - [771] = 207, - [772] = 208, - [773] = 209, - [774] = 177, - [775] = 211, - [776] = 212, - [777] = 151, - [778] = 214, - [779] = 156, - [780] = 216, - [781] = 217, - [782] = 218, - [783] = 220, - [784] = 189, - [785] = 200, - [786] = 199, - [787] = 198, - [788] = 197, - [789] = 159, - [790] = 191, - [791] = 190, - [792] = 188, - [793] = 146, - [794] = 183, - [795] = 182, - [796] = 192, - [797] = 213, - [798] = 153, - [799] = 154, - [800] = 155, - [801] = 157, - [802] = 158, - [803] = 150, - [804] = 162, - [805] = 163, - [806] = 164, - [807] = 165, - [808] = 166, - [809] = 168, - [810] = 161, - [811] = 170, - [812] = 167, - [813] = 171, - [814] = 169, - [815] = 174, - [816] = 179, - [817] = 172, - [818] = 180, - [819] = 173, - [820] = 145, - [821] = 185, - [822] = 144, - [823] = 184, - [824] = 186, - [825] = 175, - [826] = 187, - [827] = 201, - [828] = 152, - [829] = 215, - [830] = 147, - [831] = 181, - [832] = 193, - [833] = 178, - [834] = 54, - [835] = 835, - [836] = 836, - [837] = 117, - [838] = 118, - [839] = 58, - [840] = 840, - [841] = 58, - [842] = 842, - [843] = 54, - [844] = 79, + [733] = 113, + [734] = 112, + [735] = 117, + [736] = 110, + [737] = 114, + [738] = 115, + [739] = 128, + [740] = 136, + [741] = 132, + [742] = 134, + [743] = 131, + [744] = 120, + [745] = 121, + [746] = 119, + [747] = 147, + [748] = 126, + [749] = 124, + [750] = 123, + [751] = 122, + [752] = 125, + [753] = 127, + [754] = 130, + [755] = 142, + [756] = 140, + [757] = 116, + [758] = 139, + [759] = 137, + [760] = 118, + [761] = 138, + [762] = 141, + [763] = 133, + [764] = 192, + [765] = 765, + [766] = 158, + [767] = 193, + [768] = 146, + [769] = 182, + [770] = 188, + [771] = 190, + [772] = 223, + [773] = 218, + [774] = 212, + [775] = 199, + [776] = 178, + [777] = 176, + [778] = 162, + [779] = 143, + [780] = 174, + [781] = 177, + [782] = 198, + [783] = 214, + [784] = 153, + [785] = 189, + [786] = 220, + [787] = 221, + [788] = 204, + [789] = 203, + [790] = 200, + [791] = 179, + [792] = 161, + [793] = 164, + [794] = 166, + [795] = 170, + [796] = 172, + [797] = 175, + [798] = 180, + [799] = 181, + [800] = 171, + [801] = 150, + [802] = 149, + [803] = 195, + [804] = 185, + [805] = 145, + [806] = 183, + [807] = 173, + [808] = 160, + [809] = 157, + [810] = 156, + [811] = 168, + [812] = 154, + [813] = 159, + [814] = 207, + [815] = 186, + [816] = 194, + [817] = 205, + [818] = 213, + [819] = 211, + [820] = 209, + [821] = 225, + [822] = 152, + [823] = 167, + [824] = 197, + [825] = 222, + [826] = 165, + [827] = 219, + [828] = 216, + [829] = 210, + [830] = 208, + [831] = 196, + [832] = 206, + [833] = 202, + [834] = 169, + [835] = 201, + [836] = 187, + [837] = 163, + [838] = 191, + [839] = 215, + [840] = 155, + [841] = 68, + [842] = 76, + [843] = 217, + [844] = 844, [845] = 845, - [846] = 79, - [847] = 847, + [846] = 136, + [847] = 128, [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 849, - [853] = 849, - [854] = 851, - [855] = 850, + [849] = 68, + [850] = 103, + [851] = 76, + [852] = 852, + [853] = 103, + [854] = 854, + [855] = 855, [856] = 856, - [857] = 139, - [858] = 856, - [859] = 117, - [860] = 110, - [861] = 118, - [862] = 107, - [863] = 104, - [864] = 106, - [865] = 124, - [866] = 137, - [867] = 850, - [868] = 149, - [869] = 119, - [870] = 115, - [871] = 122, - [872] = 121, - [873] = 140, - [874] = 138, - [875] = 130, - [876] = 120, - [877] = 141, - [878] = 136, - [879] = 125, - [880] = 126, - [881] = 127, - [882] = 128, - [883] = 131, - [884] = 132, - [885] = 133, - [886] = 104, - [887] = 856, - [888] = 135, - [889] = 849, - [890] = 116, - [891] = 851, - [892] = 851, - [893] = 123, - [894] = 856, - [895] = 106, - [896] = 134, - [897] = 850, - [898] = 850, - [899] = 111, - [900] = 271, - [901] = 849, - [902] = 856, - [903] = 903, - [904] = 107, - [905] = 111, + [857] = 123, + [858] = 858, + [859] = 859, + [860] = 858, + [861] = 111, + [862] = 862, + [863] = 863, + [864] = 115, + [865] = 863, + [866] = 866, + [867] = 112, + [868] = 114, + [869] = 113, + [870] = 870, + [871] = 863, + [872] = 117, + [873] = 111, + [874] = 113, + [875] = 114, + [876] = 147, + [877] = 126, + [878] = 124, + [879] = 128, + [880] = 122, + [881] = 125, + [882] = 127, + [883] = 130, + [884] = 142, + [885] = 140, + [886] = 139, + [887] = 137, + [888] = 116, + [889] = 131, + [890] = 134, + [891] = 118, + [892] = 119, + [893] = 120, + [894] = 121, + [895] = 113, + [896] = 111, + [897] = 132, + [898] = 136, + [899] = 277, + [900] = 112, + [901] = 114, + [902] = 112, + [903] = 110, + [904] = 904, + [905] = 904, [906] = 110, - [907] = 907, - [908] = 908, - [909] = 903, - [910] = 104, - [911] = 106, - [912] = 107, - [913] = 110, - [914] = 851, - [915] = 850, - [916] = 849, - [917] = 856, - [918] = 111, - [919] = 851, - [920] = 122, - [921] = 119, - [922] = 140, - [923] = 149, - [924] = 138, - [925] = 130, - [926] = 137, - [927] = 120, + [907] = 133, + [908] = 141, + [909] = 138, + [910] = 904, + [911] = 863, + [912] = 110, + [913] = 870, + [914] = 866, + [915] = 863, + [916] = 866, + [917] = 904, + [918] = 866, + [919] = 870, + [920] = 866, + [921] = 870, + [922] = 870, + [923] = 904, + [924] = 863, + [925] = 870, + [926] = 904, + [927] = 866, [928] = 141, - [929] = 136, - [930] = 125, - [931] = 126, - [932] = 127, - [933] = 128, - [934] = 131, - [935] = 133, - [936] = 134, - [937] = 119, - [938] = 115, - [939] = 939, - [940] = 940, - [941] = 941, + [929] = 138, + [930] = 930, + [931] = 931, + [932] = 931, + [933] = 930, + [934] = 934, + [935] = 931, + [936] = 930, + [937] = 937, + [938] = 938, + [939] = 930, + [940] = 931, + [941] = 115, [942] = 942, [943] = 943, [944] = 944, - [945] = 945, - [946] = 946, - [947] = 940, - [948] = 942, - [949] = 940, - [950] = 942, - [951] = 951, - [952] = 942, - [953] = 940, - [954] = 942, - [955] = 942, - [956] = 940, - [957] = 940, - [958] = 139, - [959] = 124, - [960] = 135, - [961] = 116, - [962] = 132, - [963] = 963, - [964] = 124, + [945] = 126, + [946] = 124, + [947] = 123, + [948] = 122, + [949] = 125, + [950] = 127, + [951] = 130, + [952] = 142, + [953] = 140, + [954] = 139, + [955] = 137, + [956] = 116, + [957] = 131, + [958] = 134, + [959] = 118, + [960] = 120, + [961] = 121, + [962] = 930, + [963] = 931, + [964] = 964, [965] = 135, - [966] = 951, - [967] = 116, - [968] = 951, - [969] = 951, - [970] = 951, - [971] = 951, - [972] = 129, - [973] = 117, - [974] = 118, - [975] = 123, - [976] = 121, - [977] = 115, - [978] = 122, - [979] = 121, - [980] = 140, - [981] = 223, - [982] = 138, - [983] = 130, - [984] = 120, - [985] = 141, - [986] = 136, - [987] = 125, - [988] = 126, - [989] = 127, - [990] = 134, - [991] = 131, - [992] = 193, - [993] = 132, - [994] = 128, - [995] = 213, - [996] = 133, - [997] = 153, - [998] = 214, - [999] = 150, - [1000] = 153, - [1001] = 219, - [1002] = 221, - [1003] = 222, - [1004] = 177, - [1005] = 156, - [1006] = 213, - [1007] = 159, - [1008] = 161, - [1009] = 167, - [1010] = 171, - [1011] = 174, - [1012] = 179, - [1013] = 1013, - [1014] = 185, - [1015] = 193, - [1016] = 144, - [1017] = 145, - [1018] = 145, - [1019] = 144, - [1020] = 181, - [1021] = 147, - [1022] = 176, - [1023] = 175, - [1024] = 170, - [1025] = 146, - [1026] = 168, - [1027] = 166, - [1028] = 165, - [1029] = 164, - [1030] = 163, - [1031] = 162, - [1032] = 1013, - [1033] = 158, - [1034] = 157, - [1035] = 155, - [1036] = 1013, - [1037] = 154, - [1038] = 182, - [1039] = 183, - [1040] = 146, - [1041] = 188, - [1042] = 1013, - [1043] = 190, - [1044] = 191, - [1045] = 1013, - [1046] = 197, - [1047] = 198, - [1048] = 199, - [1049] = 200, - [1050] = 220, - [1051] = 218, - [1052] = 1013, - [1053] = 216, - [1054] = 215, - [1055] = 1055, - [1056] = 151, - [1057] = 212, - [1058] = 211, - [1059] = 150, - [1060] = 209, - [1061] = 208, - [1062] = 207, - [1063] = 206, - [1064] = 204, - [1065] = 203, - [1066] = 172, - [1067] = 192, - [1068] = 201, - [1069] = 202, - [1070] = 205, - [1071] = 189, - [1072] = 180, - [1073] = 169, - [1074] = 160, - [1075] = 173, - [1076] = 217, - [1077] = 178, - [1078] = 147, - [1079] = 184, - [1080] = 186, - [1081] = 194, - [1082] = 187, - [1083] = 152, - [1084] = 223, - [1085] = 215, - [1086] = 191, - [1087] = 221, - [1088] = 219, - [1089] = 205, - [1090] = 192, - [1091] = 177, - [1092] = 176, - [1093] = 156, - [1094] = 175, - [1095] = 170, - [1096] = 159, - [1097] = 168, - [1098] = 172, - [1099] = 161, - [1100] = 166, - [1101] = 165, - [1102] = 164, - [1103] = 163, - [1104] = 162, - [1105] = 158, - [1106] = 157, - [1107] = 155, - [1108] = 154, - [1109] = 194, - [1110] = 189, - [1111] = 180, - [1112] = 167, - [1113] = 171, - [1114] = 203, - [1115] = 182, - [1116] = 186, - [1117] = 152, - [1118] = 204, - [1119] = 206, - [1120] = 207, - [1121] = 208, - [1122] = 183, - [1123] = 178, - [1124] = 160, - [1125] = 188, - [1126] = 185, - [1127] = 169, - [1128] = 209, - [1129] = 190, - [1130] = 211, - [1131] = 212, - [1132] = 187, - [1133] = 222, - [1134] = 181, - [1135] = 201, - [1136] = 151, - [1137] = 214, - [1138] = 197, - [1139] = 173, - [1140] = 198, - [1141] = 178, - [1142] = 202, - [1143] = 217, - [1144] = 216, - [1145] = 218, - [1146] = 220, - [1147] = 199, - [1148] = 200, - [1149] = 184, - [1150] = 179, - [1151] = 174, - [1152] = 1152, - [1153] = 1152, - [1154] = 1152, - [1155] = 1155, - [1156] = 1152, - [1157] = 1152, - [1158] = 1152, - [1159] = 1159, - [1160] = 1159, - [1161] = 1159, - [1162] = 1159, - [1163] = 1159, - [1164] = 1159, - [1165] = 1165, - [1166] = 1165, - [1167] = 1165, + [966] = 133, + [967] = 141, + [968] = 138, + [969] = 119, + [970] = 931, + [971] = 930, + [972] = 147, + [973] = 973, + [974] = 117, + [975] = 973, + [976] = 973, + [977] = 973, + [978] = 973, + [979] = 133, + [980] = 973, + [981] = 136, + [982] = 128, + [983] = 132, + [984] = 197, + [985] = 198, + [986] = 121, + [987] = 188, + [988] = 120, + [989] = 195, + [990] = 118, + [991] = 134, + [992] = 131, + [993] = 119, + [994] = 116, + [995] = 137, + [996] = 139, + [997] = 140, + [998] = 142, + [999] = 130, + [1000] = 127, + [1001] = 125, + [1002] = 122, + [1003] = 123, + [1004] = 124, + [1005] = 126, + [1006] = 220, + [1007] = 222, + [1008] = 195, + [1009] = 1009, + [1010] = 145, + [1011] = 187, + [1012] = 1012, + [1013] = 1009, + [1014] = 180, + [1015] = 175, + [1016] = 172, + [1017] = 170, + [1018] = 166, + [1019] = 164, + [1020] = 204, + [1021] = 149, + [1022] = 159, + [1023] = 150, + [1024] = 149, + [1025] = 158, + [1026] = 185, + [1027] = 145, + [1028] = 217, + [1029] = 173, + [1030] = 160, + [1031] = 182, + [1032] = 190, + [1033] = 157, + [1034] = 153, + [1035] = 156, + [1036] = 154, + [1037] = 207, + [1038] = 186, + [1039] = 194, + [1040] = 205, + [1041] = 214, + [1042] = 211, + [1043] = 209, + [1044] = 177, + [1045] = 203, + [1046] = 174, + [1047] = 200, + [1048] = 143, + [1049] = 176, + [1050] = 196, + [1051] = 193, + [1052] = 146, + [1053] = 189, + [1054] = 1009, + [1055] = 179, + [1056] = 171, + [1057] = 1009, + [1058] = 169, + [1059] = 168, + [1060] = 167, + [1061] = 165, + [1062] = 163, + [1063] = 155, + [1064] = 1009, + [1065] = 191, + [1066] = 192, + [1067] = 201, + [1068] = 202, + [1069] = 206, + [1070] = 208, + [1071] = 223, + [1072] = 210, + [1073] = 150, + [1074] = 219, + [1075] = 216, + [1076] = 152, + [1077] = 225, + [1078] = 221, + [1079] = 162, + [1080] = 178, + [1081] = 199, + [1082] = 212, + [1083] = 218, + [1084] = 161, + [1085] = 181, + [1086] = 183, + [1087] = 143, + [1088] = 213, + [1089] = 198, + [1090] = 215, + [1091] = 197, + [1092] = 1009, + [1093] = 146, + [1094] = 188, + [1095] = 156, + [1096] = 185, + [1097] = 190, + [1098] = 223, + [1099] = 182, + [1100] = 158, + [1101] = 193, + [1102] = 176, + [1103] = 196, + [1104] = 159, + [1105] = 179, + [1106] = 221, + [1107] = 164, + [1108] = 161, + [1109] = 152, + [1110] = 200, + [1111] = 157, + [1112] = 174, + [1113] = 225, + [1114] = 213, + [1115] = 168, + [1116] = 180, + [1117] = 175, + [1118] = 154, + [1119] = 172, + [1120] = 167, + [1121] = 165, + [1122] = 222, + [1123] = 214, + [1124] = 153, + [1125] = 173, + [1126] = 217, + [1127] = 220, + [1128] = 162, + [1129] = 204, + [1130] = 163, + [1131] = 155, + [1132] = 171, + [1133] = 207, + [1134] = 186, + [1135] = 187, + [1136] = 189, + [1137] = 170, + [1138] = 191, + [1139] = 181, + [1140] = 177, + [1141] = 192, + [1142] = 203, + [1143] = 219, + [1144] = 209, + [1145] = 211, + [1146] = 199, + [1147] = 216, + [1148] = 194, + [1149] = 169, + [1150] = 201, + [1151] = 183, + [1152] = 215, + [1153] = 210, + [1154] = 178, + [1155] = 202, + [1156] = 160, + [1157] = 205, + [1158] = 206, + [1159] = 166, + [1160] = 218, + [1161] = 217, + [1162] = 208, + [1163] = 212, + [1164] = 1164, + [1165] = 1164, + [1166] = 1164, + [1167] = 1164, [1168] = 1168, - [1169] = 1168, - [1170] = 1168, - [1171] = 1165, - [1172] = 1168, - [1173] = 1165, - [1174] = 1165, - [1175] = 1168, - [1176] = 1168, - [1177] = 596, + [1169] = 1164, + [1170] = 1164, + [1171] = 1171, + [1172] = 1171, + [1173] = 1171, + [1174] = 1171, + [1175] = 1171, + [1176] = 1171, + [1177] = 1177, [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1184, - [1186] = 1184, - [1187] = 1184, - [1188] = 1184, - [1189] = 1184, + [1179] = 1177, + [1180] = 1178, + [1181] = 1177, + [1182] = 1178, + [1183] = 1177, + [1184] = 1177, + [1185] = 1178, + [1186] = 1178, + [1187] = 1178, + [1188] = 1177, + [1189] = 600, [1190] = 1190, - [1191] = 1190, + [1191] = 1191, [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1194, - [1199] = 1199, - [1200] = 1200, - [1201] = 1194, - [1202] = 1192, - [1203] = 1199, + [1198] = 1197, + [1199] = 1197, + [1200] = 1197, + [1201] = 1197, + [1202] = 1196, + [1203] = 1197, [1204] = 1204, - [1205] = 1197, + [1205] = 1205, [1206] = 1206, - [1207] = 1194, - [1208] = 1199, - [1209] = 1209, - [1210] = 1194, - [1211] = 1211, - [1212] = 1195, - [1213] = 1199, - [1214] = 1200, - [1215] = 1215, - [1216] = 1197, - [1217] = 1192, - [1218] = 1196, - [1219] = 1206, - [1220] = 1194, + [1207] = 1207, + [1208] = 1208, + [1209] = 1207, + [1210] = 1210, + [1211] = 1205, + [1212] = 1212, + [1213] = 1207, + [1214] = 1214, + [1215] = 1212, + [1216] = 1216, + [1217] = 1217, + [1218] = 1207, + [1219] = 1207, + [1220] = 1220, [1221] = 1221, - [1222] = 1199, - [1223] = 1204, - [1224] = 1196, - [1225] = 1206, - [1226] = 1197, - [1227] = 1227, - [1228] = 1195, - [1229] = 1204, - [1230] = 1230, - [1231] = 1196, + [1222] = 1222, + [1223] = 1223, + [1224] = 1205, + [1225] = 1225, + [1226] = 1204, + [1227] = 1204, + [1228] = 1216, + [1229] = 1206, + [1230] = 1212, + [1231] = 1214, [1232] = 1232, - [1233] = 1195, - [1234] = 1206, - [1235] = 1192, - [1236] = 1200, - [1237] = 1196, - [1238] = 1197, - [1239] = 1199, - [1240] = 1204, + [1233] = 1212, + [1234] = 1234, + [1235] = 1205, + [1236] = 1232, + [1237] = 1214, + [1238] = 1232, + [1239] = 1204, + [1240] = 1206, [1241] = 1204, - [1242] = 1196, - [1243] = 1200, - [1244] = 1195, - [1245] = 1206, - [1246] = 1192, - [1247] = 1200, - [1248] = 1197, - [1249] = 1249, - [1250] = 1204, - [1251] = 1206, - [1252] = 1200, + [1242] = 1206, + [1243] = 1212, + [1244] = 1214, + [1245] = 1234, + [1246] = 1216, + [1247] = 1207, + [1248] = 1216, + [1249] = 1232, + [1250] = 1234, + [1251] = 1205, + [1252] = 1205, [1253] = 1253, - [1254] = 1192, - [1255] = 1204, - [1256] = 1195, - [1257] = 1206, - [1258] = 1197, - [1259] = 1196, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1262, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1262, - [1270] = 1270, - [1271] = 1261, - [1272] = 1263, - [1273] = 1265, - [1274] = 1270, - [1275] = 1267, + [1254] = 1204, + [1255] = 1232, + [1256] = 1234, + [1257] = 1257, + [1258] = 1206, + [1259] = 1212, + [1260] = 1205, + [1261] = 1232, + [1262] = 1206, + [1263] = 1212, + [1264] = 1214, + [1265] = 1214, + [1266] = 1216, + [1267] = 1216, + [1268] = 1207, + [1269] = 1204, + [1270] = 1234, + [1271] = 1234, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1273, [1276] = 1276, [1277] = 1277, - [1278] = 1262, - [1279] = 1270, - [1280] = 1265, - [1281] = 1281, - [1282] = 1270, - [1283] = 1262, - [1284] = 1263, - [1285] = 1263, - [1286] = 1267, - [1287] = 1265, - [1288] = 1267, - [1289] = 1268, - [1290] = 1290, - [1291] = 1261, - [1292] = 1261, - [1293] = 1293, - [1294] = 1268, - [1295] = 1268, - [1296] = 1268, - [1297] = 1262, - [1298] = 1261, - [1299] = 1299, - [1300] = 1267, - [1301] = 1265, + [1278] = 1278, + [1279] = 199, + [1280] = 1274, + [1281] = 1272, + [1282] = 1273, + [1283] = 1277, + [1284] = 1272, + [1285] = 1274, + [1286] = 1286, + [1287] = 1286, + [1288] = 1274, + [1289] = 1289, + [1290] = 1273, + [1291] = 1277, + [1292] = 1273, + [1293] = 1272, + [1294] = 1286, + [1295] = 1277, + [1296] = 1296, + [1297] = 1296, + [1298] = 1286, + [1299] = 1296, + [1300] = 1274, + [1301] = 1289, [1302] = 1302, - [1303] = 1263, - [1304] = 1260, + [1303] = 1289, + [1304] = 1274, [1305] = 1305, - [1306] = 1262, - [1307] = 1270, - [1308] = 1261, - [1309] = 202, - [1310] = 1260, + [1306] = 1289, + [1307] = 1307, + [1308] = 1296, + [1309] = 1289, + [1310] = 1289, [1311] = 1311, - [1312] = 1263, - [1313] = 1270, - [1314] = 1267, - [1315] = 1268, - [1316] = 1263, - [1317] = 1317, - [1318] = 1265, - [1319] = 1319, - [1320] = 1320, + [1312] = 1286, + [1313] = 1272, + [1314] = 1277, + [1315] = 1315, + [1316] = 1273, + [1317] = 1278, + [1318] = 1273, + [1319] = 1296, + [1320] = 1274, [1321] = 1321, - [1322] = 1322, - [1323] = 1319, + [1322] = 1277, + [1323] = 1296, [1324] = 1324, - [1325] = 1325, + [1325] = 1278, [1326] = 1326, - [1327] = 1321, - [1328] = 217, - [1329] = 1322, + [1327] = 1327, + [1328] = 1272, + [1329] = 1286, [1330] = 1330, - [1331] = 1331, + [1331] = 161, [1332] = 1332, - [1333] = 1333, + [1333] = 218, [1334] = 1334, [1335] = 1335, - [1336] = 1321, + [1336] = 212, [1337] = 1337, - [1338] = 1319, - [1339] = 1325, - [1340] = 1322, - [1341] = 1321, - [1342] = 1324, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1341, [1343] = 1343, - [1344] = 1330, - [1345] = 1321, - [1346] = 1322, - [1347] = 1331, - [1348] = 1319, + [1344] = 1337, + [1345] = 213, + [1346] = 221, + [1347] = 162, + [1348] = 1348, [1349] = 1349, - [1350] = 1325, - [1351] = 1324, - [1352] = 1352, - [1353] = 1330, - [1354] = 1354, + [1350] = 1335, + [1351] = 1351, + [1352] = 1340, + [1353] = 1339, + [1354] = 181, [1355] = 1355, - [1356] = 1330, - [1357] = 1357, - [1358] = 1325, - [1359] = 1359, - [1360] = 1322, - [1361] = 1319, - [1362] = 1362, - [1363] = 189, - [1364] = 1330, - [1365] = 1365, - [1366] = 1330, - [1367] = 205, + [1356] = 1356, + [1357] = 1339, + [1358] = 1340, + [1359] = 1339, + [1360] = 1341, + [1361] = 1361, + [1362] = 1337, + [1363] = 1337, + [1364] = 1341, + [1365] = 183, + [1366] = 1361, + [1367] = 1340, [1368] = 1368, - [1369] = 180, - [1370] = 1324, - [1371] = 1331, - [1372] = 1319, + [1369] = 1369, + [1370] = 1348, + [1371] = 1339, + [1372] = 1372, [1373] = 1373, - [1374] = 1322, - [1375] = 1375, - [1376] = 1321, - [1377] = 192, - [1378] = 1378, - [1379] = 1324, - [1380] = 201, - [1381] = 1325, - [1382] = 1382, - [1383] = 1331, - [1384] = 1331, - [1385] = 1385, - [1386] = 1386, - [1387] = 1325, - [1388] = 1330, - [1389] = 1386, - [1390] = 172, - [1391] = 1391, - [1392] = 1324, - [1393] = 1334, - [1394] = 160, - [1395] = 1331, + [1374] = 1374, + [1375] = 1361, + [1376] = 1348, + [1377] = 1377, + [1378] = 178, + [1379] = 215, + [1380] = 1337, + [1381] = 1348, + [1382] = 1356, + [1383] = 1341, + [1384] = 1384, + [1385] = 1361, + [1386] = 1361, + [1387] = 1387, + [1388] = 1340, + [1389] = 1389, + [1390] = 1390, + [1391] = 1339, + [1392] = 1361, + [1393] = 1348, + [1394] = 1394, + [1395] = 1356, [1396] = 1396, [1397] = 1397, - [1398] = 1324, - [1399] = 1399, - [1400] = 1400, - [1401] = 1399, - [1402] = 1402, + [1398] = 1398, + [1399] = 1348, + [1400] = 1348, + [1401] = 1356, + [1402] = 1351, [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1405, - [1408] = 1404, + [1404] = 1356, + [1405] = 1340, + [1406] = 1356, + [1407] = 1407, + [1408] = 1356, [1409] = 1409, - [1410] = 1410, - [1411] = 1411, + [1410] = 1341, + [1411] = 1337, [1412] = 1412, - [1413] = 1400, + [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 1416, + [1417] = 1417, [1418] = 1418, [1419] = 1415, - [1420] = 1418, - [1421] = 1405, - [1422] = 1404, - [1423] = 1412, - [1424] = 1411, - [1425] = 1412, - [1426] = 1426, - [1427] = 1427, - [1428] = 1411, - [1429] = 1409, - [1430] = 1418, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1418, + [1424] = 1417, + [1425] = 1425, + [1426] = 1425, + [1427] = 1414, + [1428] = 1422, + [1429] = 1429, + [1430] = 1413, [1431] = 1431, - [1432] = 1400, - [1433] = 1399, + [1432] = 1432, + [1433] = 1433, [1434] = 1434, - [1435] = 1435, - [1436] = 1415, - [1437] = 1437, - [1438] = 1438, + [1435] = 1422, + [1436] = 1436, + [1437] = 1422, + [1438] = 1415, [1439] = 1439, - [1440] = 1414, - [1441] = 1411, - [1442] = 1426, + [1440] = 1439, + [1441] = 1441, + [1442] = 1442, [1443] = 1443, - [1444] = 1439, - [1445] = 1403, - [1446] = 1427, + [1444] = 1421, + [1445] = 1413, + [1446] = 1446, [1447] = 1447, - [1448] = 1402, - [1449] = 1438, - [1450] = 1399, - [1451] = 1426, - [1452] = 1443, + [1448] = 1433, + [1449] = 1441, + [1450] = 1414, + [1451] = 1451, + [1452] = 1452, [1453] = 1453, [1454] = 1454, - [1455] = 1412, - [1456] = 1456, - [1457] = 1411, - [1458] = 1412, - [1459] = 1416, - [1460] = 1404, - [1461] = 1405, - [1462] = 1439, - [1463] = 1415, - [1464] = 1414, - [1465] = 1465, - [1466] = 1409, - [1467] = 1416, - [1468] = 1400, - [1469] = 1434, - [1470] = 1402, - [1471] = 1471, - [1472] = 1403, - [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1403, - [1477] = 1426, - [1478] = 1478, - [1479] = 1409, - [1480] = 1414, - [1481] = 1439, - [1482] = 1438, - [1483] = 1443, - [1484] = 1418, + [1455] = 1455, + [1456] = 1451, + [1457] = 1441, + [1458] = 1434, + [1459] = 1432, + [1460] = 1436, + [1461] = 1421, + [1462] = 1454, + [1463] = 1463, + [1464] = 1418, + [1465] = 1425, + [1466] = 1446, + [1467] = 1441, + [1468] = 1420, + [1469] = 1439, + [1470] = 1421, + [1471] = 1425, + [1472] = 1436, + [1473] = 1434, + [1474] = 1433, + [1475] = 1413, + [1476] = 1476, + [1477] = 1414, + [1478] = 1451, + [1479] = 1479, + [1480] = 1415, + [1481] = 1481, + [1482] = 1418, + [1483] = 1420, + [1484] = 1421, [1485] = 1485, - [1486] = 1486, + [1486] = 1417, [1487] = 1487, - [1488] = 1427, - [1489] = 1404, - [1490] = 1418, - [1491] = 1427, - [1492] = 1402, - [1493] = 1493, - [1494] = 1400, + [1488] = 1488, + [1489] = 1453, + [1490] = 1452, + [1491] = 1453, + [1492] = 1492, + [1493] = 1452, + [1494] = 1436, [1495] = 1495, - [1496] = 1443, - [1497] = 1399, - [1498] = 1409, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 1405, - [1501] = 1438, - [1502] = 1402, - [1503] = 1438, - [1504] = 1434, - [1505] = 1439, + [1500] = 1421, + [1501] = 1417, + [1502] = 1452, + [1503] = 1453, + [1504] = 1504, + [1505] = 1422, [1506] = 1506, - [1507] = 1414, - [1508] = 1485, - [1509] = 1485, - [1510] = 1426, - [1511] = 1511, - [1512] = 1512, - [1513] = 1402, - [1514] = 1414, + [1507] = 1441, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1414, + [1512] = 1452, + [1513] = 1513, + [1514] = 1441, [1515] = 1515, - [1516] = 1516, - [1517] = 1427, - [1518] = 1443, + [1516] = 1453, + [1517] = 1454, + [1518] = 1518, [1519] = 1519, - [1520] = 1520, - [1521] = 1403, - [1522] = 1427, - [1523] = 1523, - [1524] = 1416, - [1525] = 1426, - [1526] = 1434, - [1527] = 1439, - [1528] = 1438, - [1529] = 1434, - [1530] = 1530, - [1531] = 1531, - [1532] = 1400, - [1533] = 1409, + [1520] = 1417, + [1521] = 1422, + [1522] = 1432, + [1523] = 1451, + [1524] = 1524, + [1525] = 1432, + [1526] = 1526, + [1527] = 1433, + [1528] = 1452, + [1529] = 1451, + [1530] = 1420, + [1531] = 1453, + [1532] = 1439, + [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1403, - [1537] = 1485, - [1538] = 1538, - [1539] = 1415, - [1540] = 1540, - [1541] = 1405, - [1542] = 1415, - [1543] = 1443, - [1544] = 1404, - [1545] = 1416, - [1546] = 1485, - [1547] = 1547, - [1548] = 1412, - [1549] = 1411, - [1550] = 1418, - [1551] = 1399, - [1552] = 1485, - [1553] = 1434, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1554, - [1559] = 1555, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1562, - [1565] = 1561, - [1566] = 1560, - [1567] = 1567, - [1568] = 1555, - [1569] = 1569, + [1535] = 1418, + [1536] = 1417, + [1537] = 1451, + [1538] = 1415, + [1539] = 1539, + [1540] = 1434, + [1541] = 1420, + [1542] = 1413, + [1543] = 1454, + [1544] = 1544, + [1545] = 1434, + [1546] = 1420, + [1547] = 1418, + [1548] = 1415, + [1549] = 1436, + [1550] = 1446, + [1551] = 1432, + [1552] = 1446, + [1553] = 1454, + [1554] = 1432, + [1555] = 1414, + [1556] = 1454, + [1557] = 1446, + [1558] = 1425, + [1559] = 1413, + [1560] = 1446, + [1561] = 1433, + [1562] = 1434, + [1563] = 1439, + [1564] = 1436, + [1565] = 1425, + [1566] = 1439, + [1567] = 1433, + [1568] = 1568, + [1569] = 1568, [1570] = 1570, [1571] = 1571, - [1572] = 1554, - [1573] = 1561, + [1572] = 1571, + [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 1562, - [1577] = 1577, - [1578] = 1563, - [1579] = 1579, - [1580] = 1556, - [1581] = 1560, - [1582] = 1560, - [1583] = 1577, - [1584] = 1562, - [1585] = 1585, - [1586] = 1571, - [1587] = 1561, - [1588] = 1571, - [1589] = 1556, - [1590] = 1555, + [1576] = 1573, + [1577] = 1575, + [1578] = 1568, + [1579] = 1570, + [1580] = 1574, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1581, + [1585] = 1575, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, [1591] = 1591, - [1592] = 1592, - [1593] = 1560, - [1594] = 1554, - [1595] = 1577, - [1596] = 1596, - [1597] = 1577, - [1598] = 1562, - [1599] = 1563, - [1600] = 1561, - [1601] = 1585, - [1602] = 1567, - [1603] = 1603, - [1604] = 1604, - [1605] = 1604, - [1606] = 1562, - [1607] = 1556, - [1608] = 1556, - [1609] = 1561, - [1610] = 1563, - [1611] = 1577, - [1612] = 1555, - [1613] = 1567, - [1614] = 1567, - [1615] = 1615, - [1616] = 1554, - [1617] = 1577, - [1618] = 1562, - [1619] = 1570, - [1620] = 1563, - [1621] = 1571, - [1622] = 1604, - [1623] = 1623, - [1624] = 1554, - [1625] = 1570, - [1626] = 1571, + [1592] = 1582, + [1593] = 1570, + [1594] = 1573, + [1595] = 1573, + [1596] = 1574, + [1597] = 1571, + [1598] = 1573, + [1599] = 1599, + [1600] = 1600, + [1601] = 1570, + [1602] = 1571, + [1603] = 1590, + [1604] = 1582, + [1605] = 1605, + [1606] = 1575, + [1607] = 1575, + [1608] = 1568, + [1609] = 1591, + [1610] = 1570, + [1611] = 1581, + [1612] = 1612, + [1613] = 1571, + [1614] = 1614, + [1615] = 1575, + [1616] = 1574, + [1617] = 1582, + [1618] = 1605, + [1619] = 1568, + [1620] = 1573, + [1621] = 1621, + [1622] = 1574, + [1623] = 1570, + [1624] = 1575, + [1625] = 1582, + [1626] = 1582, [1627] = 1627, - [1628] = 1560, - [1629] = 1570, - [1630] = 1630, + [1628] = 1628, + [1629] = 1571, + [1630] = 1568, [1631] = 1631, - [1632] = 1604, - [1633] = 1570, - [1634] = 1556, - [1635] = 1567, - [1636] = 1604, - [1637] = 1570, - [1638] = 1571, - [1639] = 1563, - [1640] = 1604, - [1641] = 1570, - [1642] = 1555, - [1643] = 1585, - [1644] = 1556, - [1645] = 1585, - [1646] = 1567, - [1647] = 1585, - [1648] = 1563, - [1649] = 1585, - [1650] = 1577, - [1651] = 1651, + [1632] = 1573, + [1633] = 1628, + [1634] = 1590, + [1635] = 1568, + [1636] = 1605, + [1637] = 1637, + [1638] = 1590, + [1639] = 1628, + [1640] = 1591, + [1641] = 1591, + [1642] = 1574, + [1643] = 1628, + [1644] = 1591, + [1645] = 1645, + [1646] = 1605, + [1647] = 1628, + [1648] = 1591, + [1649] = 1590, + [1650] = 1605, + [1651] = 1628, + [1652] = 1652, + [1653] = 1591, + [1654] = 1605, + [1655] = 1628, + [1656] = 1590, + [1657] = 1612, + [1658] = 1612, + [1659] = 1612, + [1660] = 1581, + [1661] = 1612, + [1662] = 1581, + [1663] = 1612, + [1664] = 1581, + [1665] = 1665, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3366,7 +3387,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 372, 'u', 353, '{', 159, - '|', 33, + '|', 36, '}', 160, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -3436,7 +3457,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 372, 'u', 353, '{', 159, - '|', 36, + '|', 33, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); @@ -6648,14 +6669,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 1}, [51] = {.lex_state = 1}, [52] = {.lex_state = 1}, - [53] = {.lex_state = 2}, - [54] = {.lex_state = 145, .external_lex_state = 2}, + [53] = {.lex_state = 1}, + [54] = {.lex_state = 1}, [55] = {.lex_state = 1}, - [56] = {.lex_state = 1}, + [56] = {.lex_state = 2}, [57] = {.lex_state = 1}, - [58] = {.lex_state = 145, .external_lex_state = 2}, - [59] = {.lex_state = 1}, - [60] = {.lex_state = 2}, + [58] = {.lex_state = 1}, + [59] = {.lex_state = 2}, + [60] = {.lex_state = 1}, [61] = {.lex_state = 1}, [62] = {.lex_state = 1}, [63] = {.lex_state = 1}, @@ -6663,7 +6684,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, - [68] = {.lex_state = 1}, + [68] = {.lex_state = 145, .external_lex_state = 2}, [69] = {.lex_state = 1}, [70] = {.lex_state = 1}, [71] = {.lex_state = 1}, @@ -6671,10 +6692,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [73] = {.lex_state = 1}, [74] = {.lex_state = 1}, [75] = {.lex_state = 1}, - [76] = {.lex_state = 1}, + [76] = {.lex_state = 145, .external_lex_state = 2}, [77] = {.lex_state = 1}, [78] = {.lex_state = 1}, - [79] = {.lex_state = 145, .external_lex_state = 2}, + [79] = {.lex_state = 1}, [80] = {.lex_state = 1}, [81] = {.lex_state = 1}, [82] = {.lex_state = 1}, @@ -6698,55 +6719,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [100] = {.lex_state = 1}, [101] = {.lex_state = 1}, [102] = {.lex_state = 1}, - [103] = {.lex_state = 1}, - [104] = {.lex_state = 144, .external_lex_state = 2}, + [103] = {.lex_state = 145, .external_lex_state = 2}, + [104] = {.lex_state = 1}, [105] = {.lex_state = 1}, - [106] = {.lex_state = 144, .external_lex_state = 2}, - [107] = {.lex_state = 144, .external_lex_state = 2}, + [106] = {.lex_state = 1}, + [107] = {.lex_state = 1}, [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, [110] = {.lex_state = 144, .external_lex_state = 2}, [111] = {.lex_state = 144, .external_lex_state = 2}, - [112] = {.lex_state = 1}, - [113] = {.lex_state = 1}, - [114] = {.lex_state = 1}, - [115] = {.lex_state = 144, .external_lex_state = 2}, + [112] = {.lex_state = 144, .external_lex_state = 2}, + [113] = {.lex_state = 144, .external_lex_state = 2}, + [114] = {.lex_state = 144, .external_lex_state = 2}, + [115] = {.lex_state = 145, .external_lex_state = 2}, [116] = {.lex_state = 144, .external_lex_state = 2}, [117] = {.lex_state = 145, .external_lex_state = 2}, - [118] = {.lex_state = 145, .external_lex_state = 2}, + [118] = {.lex_state = 144, .external_lex_state = 2}, [119] = {.lex_state = 144, .external_lex_state = 2}, [120] = {.lex_state = 144, .external_lex_state = 2}, [121] = {.lex_state = 144, .external_lex_state = 2}, [122] = {.lex_state = 144, .external_lex_state = 2}, - [123] = {.lex_state = 146, .external_lex_state = 2}, + [123] = {.lex_state = 144, .external_lex_state = 2}, [124] = {.lex_state = 144, .external_lex_state = 2}, [125] = {.lex_state = 144, .external_lex_state = 2}, [126] = {.lex_state = 144, .external_lex_state = 2}, [127] = {.lex_state = 144, .external_lex_state = 2}, - [128] = {.lex_state = 144, .external_lex_state = 2}, - [129] = {.lex_state = 144, .external_lex_state = 2}, + [128] = {.lex_state = 145, .external_lex_state = 2}, + [129] = {.lex_state = 1}, [130] = {.lex_state = 144, .external_lex_state = 2}, [131] = {.lex_state = 144, .external_lex_state = 2}, - [132] = {.lex_state = 144, .external_lex_state = 2}, + [132] = {.lex_state = 146, .external_lex_state = 2}, [133] = {.lex_state = 144, .external_lex_state = 2}, [134] = {.lex_state = 144, .external_lex_state = 2}, [135] = {.lex_state = 144, .external_lex_state = 2}, - [136] = {.lex_state = 144, .external_lex_state = 2}, - [137] = {.lex_state = 145, .external_lex_state = 2}, + [136] = {.lex_state = 145, .external_lex_state = 2}, + [137] = {.lex_state = 144, .external_lex_state = 2}, [138] = {.lex_state = 144, .external_lex_state = 2}, - [139] = {.lex_state = 145, .external_lex_state = 2}, + [139] = {.lex_state = 144, .external_lex_state = 2}, [140] = {.lex_state = 144, .external_lex_state = 2}, [141] = {.lex_state = 144, .external_lex_state = 2}, - [142] = {.lex_state = 146, .external_lex_state = 2}, - [143] = {.lex_state = 146, .external_lex_state = 2}, - [144] = {.lex_state = 144, .external_lex_state = 2}, + [142] = {.lex_state = 144, .external_lex_state = 2}, + [143] = {.lex_state = 144, .external_lex_state = 2}, + [144] = {.lex_state = 1}, [145] = {.lex_state = 144, .external_lex_state = 2}, [146] = {.lex_state = 144, .external_lex_state = 2}, [147] = {.lex_state = 144, .external_lex_state = 2}, - [148] = {.lex_state = 1}, + [148] = {.lex_state = 146, .external_lex_state = 2}, [149] = {.lex_state = 144, .external_lex_state = 2}, [150] = {.lex_state = 144, .external_lex_state = 2}, - [151] = {.lex_state = 144, .external_lex_state = 2}, + [151] = {.lex_state = 146, .external_lex_state = 2}, [152] = {.lex_state = 144, .external_lex_state = 2}, [153] = {.lex_state = 144, .external_lex_state = 2}, [154] = {.lex_state = 144, .external_lex_state = 2}, @@ -6779,7 +6800,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 144, .external_lex_state = 2}, [182] = {.lex_state = 144, .external_lex_state = 2}, [183] = {.lex_state = 144, .external_lex_state = 2}, - [184] = {.lex_state = 144, .external_lex_state = 2}, + [184] = {.lex_state = 1}, [185] = {.lex_state = 144, .external_lex_state = 2}, [186] = {.lex_state = 144, .external_lex_state = 2}, [187] = {.lex_state = 144, .external_lex_state = 2}, @@ -6805,7 +6826,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 144, .external_lex_state = 2}, [208] = {.lex_state = 144, .external_lex_state = 2}, [209] = {.lex_state = 144, .external_lex_state = 2}, - [210] = {.lex_state = 1}, + [210] = {.lex_state = 144, .external_lex_state = 2}, [211] = {.lex_state = 144, .external_lex_state = 2}, [212] = {.lex_state = 144, .external_lex_state = 2}, [213] = {.lex_state = 144, .external_lex_state = 2}, @@ -6819,28 +6840,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [221] = {.lex_state = 144, .external_lex_state = 2}, [222] = {.lex_state = 144, .external_lex_state = 2}, [223] = {.lex_state = 144, .external_lex_state = 2}, - [224] = {.lex_state = 1}, - [225] = {.lex_state = 1}, - [226] = {.lex_state = 1}, + [224] = {.lex_state = 144, .external_lex_state = 2}, + [225] = {.lex_state = 144, .external_lex_state = 2}, + [226] = {.lex_state = 144, .external_lex_state = 2}, [227] = {.lex_state = 1}, [228] = {.lex_state = 1}, [229] = {.lex_state = 1}, [230] = {.lex_state = 1}, - [231] = {.lex_state = 151, .external_lex_state = 2}, + [231] = {.lex_state = 1}, [232] = {.lex_state = 1}, [233] = {.lex_state = 1}, [234] = {.lex_state = 1}, [235] = {.lex_state = 1}, [236] = {.lex_state = 1}, [237] = {.lex_state = 1}, - [238] = {.lex_state = 151, .external_lex_state = 2}, + [238] = {.lex_state = 1}, [239] = {.lex_state = 1}, [240] = {.lex_state = 151, .external_lex_state = 2}, - [241] = {.lex_state = 1}, - [242] = {.lex_state = 150, .external_lex_state = 2}, + [241] = {.lex_state = 151, .external_lex_state = 2}, + [242] = {.lex_state = 1}, [243] = {.lex_state = 1}, [244] = {.lex_state = 1}, - [245] = {.lex_state = 150, .external_lex_state = 2}, + [245] = {.lex_state = 151, .external_lex_state = 2}, [246] = {.lex_state = 150, .external_lex_state = 2}, [247] = {.lex_state = 150, .external_lex_state = 2}, [248] = {.lex_state = 150, .external_lex_state = 2}, @@ -6848,89 +6869,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [250] = {.lex_state = 150, .external_lex_state = 2}, [251] = {.lex_state = 150, .external_lex_state = 2}, [252] = {.lex_state = 150, .external_lex_state = 2}, - [253] = {.lex_state = 152, .external_lex_state = 2}, - [254] = {.lex_state = 151, .external_lex_state = 2}, - [255] = {.lex_state = 151, .external_lex_state = 2}, - [256] = {.lex_state = 151, .external_lex_state = 2}, + [253] = {.lex_state = 150, .external_lex_state = 2}, + [254] = {.lex_state = 152, .external_lex_state = 2}, + [255] = {.lex_state = 150, .external_lex_state = 2}, + [256] = {.lex_state = 150, .external_lex_state = 2}, [257] = {.lex_state = 150, .external_lex_state = 2}, [258] = {.lex_state = 150, .external_lex_state = 2}, [259] = {.lex_state = 150, .external_lex_state = 2}, [260] = {.lex_state = 150, .external_lex_state = 2}, - [261] = {.lex_state = 150, .external_lex_state = 2}, + [261] = {.lex_state = 151, .external_lex_state = 2}, [262] = {.lex_state = 150, .external_lex_state = 2}, [263] = {.lex_state = 150, .external_lex_state = 2}, [264] = {.lex_state = 150, .external_lex_state = 2}, - [265] = {.lex_state = 151, .external_lex_state = 2}, + [265] = {.lex_state = 150, .external_lex_state = 2}, [266] = {.lex_state = 150, .external_lex_state = 2}, [267] = {.lex_state = 150, .external_lex_state = 2}, - [268] = {.lex_state = 150, .external_lex_state = 2}, + [268] = {.lex_state = 151, .external_lex_state = 2}, [269] = {.lex_state = 150, .external_lex_state = 2}, - [270] = {.lex_state = 150, .external_lex_state = 2}, + [270] = {.lex_state = 151, .external_lex_state = 2}, [271] = {.lex_state = 150, .external_lex_state = 2}, [272] = {.lex_state = 150, .external_lex_state = 2}, [273] = {.lex_state = 150, .external_lex_state = 2}, [274] = {.lex_state = 150, .external_lex_state = 2}, [275] = {.lex_state = 150, .external_lex_state = 2}, - [276] = {.lex_state = 150, .external_lex_state = 2}, + [276] = {.lex_state = 151, .external_lex_state = 2}, [277] = {.lex_state = 150, .external_lex_state = 2}, - [278] = {.lex_state = 152, .external_lex_state = 2}, - [279] = {.lex_state = 150, .external_lex_state = 2}, - [280] = {.lex_state = 152, .external_lex_state = 2}, - [281] = {.lex_state = 150, .external_lex_state = 2}, - [282] = {.lex_state = 150, .external_lex_state = 2}, + [278] = {.lex_state = 150, .external_lex_state = 2}, + [279] = {.lex_state = 1}, + [280] = {.lex_state = 1}, + [281] = {.lex_state = 1}, + [282] = {.lex_state = 1}, [283] = {.lex_state = 150, .external_lex_state = 2}, - [284] = {.lex_state = 150, .external_lex_state = 2}, - [285] = {.lex_state = 150, .external_lex_state = 2}, - [286] = {.lex_state = 1}, - [287] = {.lex_state = 150, .external_lex_state = 2}, - [288] = {.lex_state = 150, .external_lex_state = 2}, - [289] = {.lex_state = 150, .external_lex_state = 2}, + [284] = {.lex_state = 1}, + [285] = {.lex_state = 1}, + [286] = {.lex_state = 152, .external_lex_state = 2}, + [287] = {.lex_state = 152, .external_lex_state = 2}, + [288] = {.lex_state = 1}, + [289] = {.lex_state = 1}, [290] = {.lex_state = 1}, - [291] = {.lex_state = 150, .external_lex_state = 2}, - [292] = {.lex_state = 150, .external_lex_state = 2}, - [293] = {.lex_state = 150, .external_lex_state = 2}, + [291] = {.lex_state = 1}, + [292] = {.lex_state = 1}, + [293] = {.lex_state = 1}, [294] = {.lex_state = 150, .external_lex_state = 2}, - [295] = {.lex_state = 150, .external_lex_state = 2}, + [295] = {.lex_state = 1}, [296] = {.lex_state = 150, .external_lex_state = 2}, [297] = {.lex_state = 150, .external_lex_state = 2}, [298] = {.lex_state = 150, .external_lex_state = 2}, - [299] = {.lex_state = 150, .external_lex_state = 2}, - [300] = {.lex_state = 150, .external_lex_state = 2}, + [299] = {.lex_state = 1}, + [300] = {.lex_state = 1}, [301] = {.lex_state = 1}, - [302] = {.lex_state = 150, .external_lex_state = 2}, - [303] = {.lex_state = 150, .external_lex_state = 2}, + [302] = {.lex_state = 1}, + [303] = {.lex_state = 1}, [304] = {.lex_state = 150, .external_lex_state = 2}, - [305] = {.lex_state = 1}, + [305] = {.lex_state = 150, .external_lex_state = 2}, [306] = {.lex_state = 150, .external_lex_state = 2}, - [307] = {.lex_state = 1}, + [307] = {.lex_state = 150, .external_lex_state = 2}, [308] = {.lex_state = 150, .external_lex_state = 2}, [309] = {.lex_state = 150, .external_lex_state = 2}, [310] = {.lex_state = 150, .external_lex_state = 2}, [311] = {.lex_state = 150, .external_lex_state = 2}, - [312] = {.lex_state = 1}, - [313] = {.lex_state = 150, .external_lex_state = 2}, - [314] = {.lex_state = 150, .external_lex_state = 2}, + [312] = {.lex_state = 150, .external_lex_state = 2}, + [313] = {.lex_state = 1}, + [314] = {.lex_state = 1}, [315] = {.lex_state = 150, .external_lex_state = 2}, [316] = {.lex_state = 150, .external_lex_state = 2}, [317] = {.lex_state = 150, .external_lex_state = 2}, - [318] = {.lex_state = 1}, + [318] = {.lex_state = 150, .external_lex_state = 2}, [319] = {.lex_state = 150, .external_lex_state = 2}, [320] = {.lex_state = 150, .external_lex_state = 2}, [321] = {.lex_state = 150, .external_lex_state = 2}, - [322] = {.lex_state = 1}, - [323] = {.lex_state = 150, .external_lex_state = 2}, + [322] = {.lex_state = 150, .external_lex_state = 2}, + [323] = {.lex_state = 1}, [324] = {.lex_state = 150, .external_lex_state = 2}, [325] = {.lex_state = 1}, [326] = {.lex_state = 150, .external_lex_state = 2}, - [327] = {.lex_state = 150, .external_lex_state = 2}, - [328] = {.lex_state = 1}, - [329] = {.lex_state = 150, .external_lex_state = 2}, - [330] = {.lex_state = 150, .external_lex_state = 2}, - [331] = {.lex_state = 150, .external_lex_state = 2}, + [327] = {.lex_state = 1}, + [328] = {.lex_state = 150, .external_lex_state = 2}, + [329] = {.lex_state = 1}, + [330] = {.lex_state = 1}, + [331] = {.lex_state = 1}, [332] = {.lex_state = 150, .external_lex_state = 2}, [333] = {.lex_state = 150, .external_lex_state = 2}, [334] = {.lex_state = 150, .external_lex_state = 2}, - [335] = {.lex_state = 150, .external_lex_state = 2}, + [335] = {.lex_state = 1}, [336] = {.lex_state = 150, .external_lex_state = 2}, [337] = {.lex_state = 150, .external_lex_state = 2}, [338] = {.lex_state = 1}, @@ -6942,11 +6963,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 1}, [345] = {.lex_state = 150, .external_lex_state = 2}, [346] = {.lex_state = 150, .external_lex_state = 2}, - [347] = {.lex_state = 1}, + [347] = {.lex_state = 150, .external_lex_state = 2}, [348] = {.lex_state = 150, .external_lex_state = 2}, [349] = {.lex_state = 1}, [350] = {.lex_state = 150, .external_lex_state = 2}, - [351] = {.lex_state = 1}, + [351] = {.lex_state = 150, .external_lex_state = 2}, [352] = {.lex_state = 150, .external_lex_state = 2}, [353] = {.lex_state = 150, .external_lex_state = 2}, [354] = {.lex_state = 150, .external_lex_state = 2}, @@ -6963,47 +6984,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 150, .external_lex_state = 2}, [366] = {.lex_state = 150, .external_lex_state = 2}, [367] = {.lex_state = 150, .external_lex_state = 2}, - [368] = {.lex_state = 1}, + [368] = {.lex_state = 150, .external_lex_state = 2}, [369] = {.lex_state = 1}, [370] = {.lex_state = 150, .external_lex_state = 2}, [371] = {.lex_state = 150, .external_lex_state = 2}, [372] = {.lex_state = 150, .external_lex_state = 2}, [373] = {.lex_state = 150, .external_lex_state = 2}, - [374] = {.lex_state = 1}, - [375] = {.lex_state = 1}, - [376] = {.lex_state = 1}, - [377] = {.lex_state = 1}, - [378] = {.lex_state = 1}, - [379] = {.lex_state = 1}, - [380] = {.lex_state = 1}, - [381] = {.lex_state = 1}, - [382] = {.lex_state = 1}, - [383] = {.lex_state = 1}, - [384] = {.lex_state = 1}, - [385] = {.lex_state = 1}, - [386] = {.lex_state = 1}, - [387] = {.lex_state = 1}, - [388] = {.lex_state = 1}, - [389] = {.lex_state = 1}, + [374] = {.lex_state = 150, .external_lex_state = 2}, + [375] = {.lex_state = 150, .external_lex_state = 2}, + [376] = {.lex_state = 150, .external_lex_state = 2}, + [377] = {.lex_state = 150, .external_lex_state = 2}, + [378] = {.lex_state = 150, .external_lex_state = 2}, + [379] = {.lex_state = 150, .external_lex_state = 2}, + [380] = {.lex_state = 150, .external_lex_state = 2}, + [381] = {.lex_state = 150, .external_lex_state = 2}, + [382] = {.lex_state = 150, .external_lex_state = 2}, + [383] = {.lex_state = 150, .external_lex_state = 2}, + [384] = {.lex_state = 150, .external_lex_state = 2}, + [385] = {.lex_state = 150, .external_lex_state = 2}, + [386] = {.lex_state = 150, .external_lex_state = 2}, + [387] = {.lex_state = 150, .external_lex_state = 2}, + [388] = {.lex_state = 150, .external_lex_state = 2}, + [389] = {.lex_state = 150, .external_lex_state = 2}, [390] = {.lex_state = 1}, - [391] = {.lex_state = 1}, - [392] = {.lex_state = 1}, - [393] = {.lex_state = 3}, + [391] = {.lex_state = 150, .external_lex_state = 2}, + [392] = {.lex_state = 150, .external_lex_state = 2}, + [393] = {.lex_state = 1}, [394] = {.lex_state = 1}, - [395] = {.lex_state = 3}, - [396] = {.lex_state = 1}, - [397] = {.lex_state = 1}, + [395] = {.lex_state = 1}, + [396] = {.lex_state = 3}, + [397] = {.lex_state = 3}, [398] = {.lex_state = 1}, - [399] = {.lex_state = 1}, - [400] = {.lex_state = 3}, - [401] = {.lex_state = 3}, - [402] = {.lex_state = 3}, - [403] = {.lex_state = 1}, + [399] = {.lex_state = 3}, + [400] = {.lex_state = 1}, + [401] = {.lex_state = 1}, + [402] = {.lex_state = 1}, + [403] = {.lex_state = 3}, [404] = {.lex_state = 3}, [405] = {.lex_state = 1}, [406] = {.lex_state = 1}, [407] = {.lex_state = 1}, - [408] = {.lex_state = 1}, + [408] = {.lex_state = 3}, [409] = {.lex_state = 1}, [410] = {.lex_state = 1}, [411] = {.lex_state = 1}, @@ -7176,10 +7197,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [578] = {.lex_state = 1}, [579] = {.lex_state = 1}, [580] = {.lex_state = 1}, - [581] = {.lex_state = 156}, - [582] = {.lex_state = 156}, - [583] = {.lex_state = 156}, - [584] = {.lex_state = 156}, + [581] = {.lex_state = 1}, + [582] = {.lex_state = 1}, + [583] = {.lex_state = 1}, + [584] = {.lex_state = 1}, [585] = {.lex_state = 156}, [586] = {.lex_state = 156}, [587] = {.lex_state = 156}, @@ -7205,10 +7226,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 156}, [608] = {.lex_state = 156}, [609] = {.lex_state = 156}, - [610] = {.lex_state = 4, .external_lex_state = 2}, - [611] = {.lex_state = 4, .external_lex_state = 2}, - [612] = {.lex_state = 4, .external_lex_state = 2}, - [613] = {.lex_state = 4, .external_lex_state = 2}, + [610] = {.lex_state = 156}, + [611] = {.lex_state = 156}, + [612] = {.lex_state = 156}, + [613] = {.lex_state = 156}, [614] = {.lex_state = 4, .external_lex_state = 2}, [615] = {.lex_state = 4, .external_lex_state = 2}, [616] = {.lex_state = 4, .external_lex_state = 2}, @@ -7252,7 +7273,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [654] = {.lex_state = 4, .external_lex_state = 2}, [655] = {.lex_state = 4, .external_lex_state = 2}, [656] = {.lex_state = 4, .external_lex_state = 2}, - [657] = {.lex_state = 8, .external_lex_state = 2}, + [657] = {.lex_state = 4, .external_lex_state = 2}, [658] = {.lex_state = 4, .external_lex_state = 2}, [659] = {.lex_state = 4, .external_lex_state = 2}, [660] = {.lex_state = 4, .external_lex_state = 2}, @@ -7281,7 +7302,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [683] = {.lex_state = 4, .external_lex_state = 2}, [684] = {.lex_state = 4, .external_lex_state = 2}, [685] = {.lex_state = 4, .external_lex_state = 2}, - [686] = {.lex_state = 8, .external_lex_state = 2}, + [686] = {.lex_state = 4, .external_lex_state = 2}, [687] = {.lex_state = 4, .external_lex_state = 2}, [688] = {.lex_state = 4, .external_lex_state = 2}, [689] = {.lex_state = 4, .external_lex_state = 2}, @@ -7293,9 +7314,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [695] = {.lex_state = 4, .external_lex_state = 2}, [696] = {.lex_state = 4, .external_lex_state = 2}, [697] = {.lex_state = 4, .external_lex_state = 2}, - [698] = {.lex_state = 4, .external_lex_state = 2}, + [698] = {.lex_state = 8, .external_lex_state = 2}, [699] = {.lex_state = 4, .external_lex_state = 2}, - [700] = {.lex_state = 4, .external_lex_state = 2}, + [700] = {.lex_state = 8, .external_lex_state = 2}, [701] = {.lex_state = 4, .external_lex_state = 2}, [702] = {.lex_state = 4, .external_lex_state = 2}, [703] = {.lex_state = 4, .external_lex_state = 2}, @@ -7319,20 +7340,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [721] = {.lex_state = 4, .external_lex_state = 2}, [722] = {.lex_state = 4, .external_lex_state = 2}, [723] = {.lex_state = 4, .external_lex_state = 2}, - [724] = {.lex_state = 8, .external_lex_state = 2}, + [724] = {.lex_state = 4, .external_lex_state = 2}, [725] = {.lex_state = 4, .external_lex_state = 2}, - [726] = {.lex_state = 8, .external_lex_state = 2}, - [727] = {.lex_state = 8, .external_lex_state = 2}, - [728] = {.lex_state = 8, .external_lex_state = 2}, - [729] = {.lex_state = 6, .external_lex_state = 2}, - [730] = {.lex_state = 6, .external_lex_state = 2}, - [731] = {.lex_state = 8, .external_lex_state = 2}, + [726] = {.lex_state = 4, .external_lex_state = 2}, + [727] = {.lex_state = 4, .external_lex_state = 2}, + [728] = {.lex_state = 4, .external_lex_state = 2}, + [729] = {.lex_state = 4, .external_lex_state = 2}, + [730] = {.lex_state = 8, .external_lex_state = 2}, + [731] = {.lex_state = 4, .external_lex_state = 2}, [732] = {.lex_state = 6, .external_lex_state = 2}, [733] = {.lex_state = 6, .external_lex_state = 2}, [734] = {.lex_state = 6, .external_lex_state = 2}, [735] = {.lex_state = 8, .external_lex_state = 2}, - [736] = {.lex_state = 8, .external_lex_state = 2}, - [737] = {.lex_state = 8, .external_lex_state = 2}, + [736] = {.lex_state = 6, .external_lex_state = 2}, + [737] = {.lex_state = 6, .external_lex_state = 2}, [738] = {.lex_state = 8, .external_lex_state = 2}, [739] = {.lex_state = 8, .external_lex_state = 2}, [740] = {.lex_state = 8, .external_lex_state = 2}, @@ -7359,11 +7380,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 8, .external_lex_state = 2}, [762] = {.lex_state = 8, .external_lex_state = 2}, [763] = {.lex_state = 8, .external_lex_state = 2}, - [764] = {.lex_state = 1}, - [765] = {.lex_state = 8, .external_lex_state = 2}, + [764] = {.lex_state = 8, .external_lex_state = 2}, + [765] = {.lex_state = 1}, [766] = {.lex_state = 8, .external_lex_state = 2}, [767] = {.lex_state = 8, .external_lex_state = 2}, - [768] = {.lex_state = 8, .external_lex_state = 2}, + [768] = {.lex_state = 6, .external_lex_state = 2}, [769] = {.lex_state = 8, .external_lex_state = 2}, [770] = {.lex_state = 8, .external_lex_state = 2}, [771] = {.lex_state = 8, .external_lex_state = 2}, @@ -7374,7 +7395,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [776] = {.lex_state = 8, .external_lex_state = 2}, [777] = {.lex_state = 8, .external_lex_state = 2}, [778] = {.lex_state = 8, .external_lex_state = 2}, - [779] = {.lex_state = 8, .external_lex_state = 2}, + [779] = {.lex_state = 6, .external_lex_state = 2}, [780] = {.lex_state = 8, .external_lex_state = 2}, [781] = {.lex_state = 8, .external_lex_state = 2}, [782] = {.lex_state = 8, .external_lex_state = 2}, @@ -7388,7 +7409,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [790] = {.lex_state = 8, .external_lex_state = 2}, [791] = {.lex_state = 8, .external_lex_state = 2}, [792] = {.lex_state = 8, .external_lex_state = 2}, - [793] = {.lex_state = 6, .external_lex_state = 2}, + [793] = {.lex_state = 8, .external_lex_state = 2}, [794] = {.lex_state = 8, .external_lex_state = 2}, [795] = {.lex_state = 8, .external_lex_state = 2}, [796] = {.lex_state = 8, .external_lex_state = 2}, @@ -7396,11 +7417,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 8, .external_lex_state = 2}, [799] = {.lex_state = 8, .external_lex_state = 2}, [800] = {.lex_state = 8, .external_lex_state = 2}, - [801] = {.lex_state = 8, .external_lex_state = 2}, - [802] = {.lex_state = 8, .external_lex_state = 2}, - [803] = {.lex_state = 6, .external_lex_state = 2}, + [801] = {.lex_state = 6, .external_lex_state = 2}, + [802] = {.lex_state = 6, .external_lex_state = 2}, + [803] = {.lex_state = 8, .external_lex_state = 2}, [804] = {.lex_state = 8, .external_lex_state = 2}, - [805] = {.lex_state = 8, .external_lex_state = 2}, + [805] = {.lex_state = 6, .external_lex_state = 2}, [806] = {.lex_state = 8, .external_lex_state = 2}, [807] = {.lex_state = 8, .external_lex_state = 2}, [808] = {.lex_state = 8, .external_lex_state = 2}, @@ -7415,9 +7436,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 8, .external_lex_state = 2}, [818] = {.lex_state = 8, .external_lex_state = 2}, [819] = {.lex_state = 8, .external_lex_state = 2}, - [820] = {.lex_state = 6, .external_lex_state = 2}, + [820] = {.lex_state = 8, .external_lex_state = 2}, [821] = {.lex_state = 8, .external_lex_state = 2}, - [822] = {.lex_state = 6, .external_lex_state = 2}, + [822] = {.lex_state = 8, .external_lex_state = 2}, [823] = {.lex_state = 8, .external_lex_state = 2}, [824] = {.lex_state = 8, .external_lex_state = 2}, [825] = {.lex_state = 8, .external_lex_state = 2}, @@ -7425,51 +7446,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [827] = {.lex_state = 8, .external_lex_state = 2}, [828] = {.lex_state = 8, .external_lex_state = 2}, [829] = {.lex_state = 8, .external_lex_state = 2}, - [830] = {.lex_state = 6, .external_lex_state = 2}, + [830] = {.lex_state = 8, .external_lex_state = 2}, [831] = {.lex_state = 8, .external_lex_state = 2}, [832] = {.lex_state = 8, .external_lex_state = 2}, [833] = {.lex_state = 8, .external_lex_state = 2}, - [834] = {.lex_state = 6, .external_lex_state = 2}, - [835] = {.lex_state = 1}, - [836] = {.lex_state = 1}, - [837] = {.lex_state = 1}, - [838] = {.lex_state = 1}, - [839] = {.lex_state = 6, .external_lex_state = 2}, - [840] = {.lex_state = 1}, - [841] = {.lex_state = 10, .external_lex_state = 2}, - [842] = {.lex_state = 1}, - [843] = {.lex_state = 10, .external_lex_state = 2}, - [844] = {.lex_state = 6, .external_lex_state = 2}, - [845] = {.lex_state = 8, .external_lex_state = 2}, - [846] = {.lex_state = 10, .external_lex_state = 2}, - [847] = {.lex_state = 8, .external_lex_state = 2}, - [848] = {.lex_state = 15}, - [849] = {.lex_state = 15}, - [850] = {.lex_state = 8, .external_lex_state = 2}, - [851] = {.lex_state = 8, .external_lex_state = 2}, - [852] = {.lex_state = 15}, - [853] = {.lex_state = 15}, - [854] = {.lex_state = 8, .external_lex_state = 2}, + [834] = {.lex_state = 8, .external_lex_state = 2}, + [835] = {.lex_state = 8, .external_lex_state = 2}, + [836] = {.lex_state = 8, .external_lex_state = 2}, + [837] = {.lex_state = 8, .external_lex_state = 2}, + [838] = {.lex_state = 8, .external_lex_state = 2}, + [839] = {.lex_state = 8, .external_lex_state = 2}, + [840] = {.lex_state = 8, .external_lex_state = 2}, + [841] = {.lex_state = 6, .external_lex_state = 2}, + [842] = {.lex_state = 6, .external_lex_state = 2}, + [843] = {.lex_state = 8, .external_lex_state = 2}, + [844] = {.lex_state = 1}, + [845] = {.lex_state = 1}, + [846] = {.lex_state = 1}, + [847] = {.lex_state = 1}, + [848] = {.lex_state = 1}, + [849] = {.lex_state = 10, .external_lex_state = 2}, + [850] = {.lex_state = 6, .external_lex_state = 2}, + [851] = {.lex_state = 10, .external_lex_state = 2}, + [852] = {.lex_state = 1}, + [853] = {.lex_state = 10, .external_lex_state = 2}, + [854] = {.lex_state = 15}, [855] = {.lex_state = 8, .external_lex_state = 2}, [856] = {.lex_state = 8, .external_lex_state = 2}, [857] = {.lex_state = 6, .external_lex_state = 2}, - [858] = {.lex_state = 8, .external_lex_state = 2}, - [859] = {.lex_state = 6, .external_lex_state = 2}, - [860] = {.lex_state = 10, .external_lex_state = 2}, + [858] = {.lex_state = 6, .external_lex_state = 2}, + [859] = {.lex_state = 8, .external_lex_state = 2}, + [860] = {.lex_state = 8, .external_lex_state = 2}, [861] = {.lex_state = 6, .external_lex_state = 2}, - [862] = {.lex_state = 10, .external_lex_state = 2}, + [862] = {.lex_state = 8, .external_lex_state = 2}, [863] = {.lex_state = 8, .external_lex_state = 2}, - [864] = {.lex_state = 8, .external_lex_state = 2}, - [865] = {.lex_state = 6, .external_lex_state = 2}, - [866] = {.lex_state = 6, .external_lex_state = 2}, - [867] = {.lex_state = 8, .external_lex_state = 2}, - [868] = {.lex_state = 6, .external_lex_state = 2}, + [864] = {.lex_state = 6, .external_lex_state = 2}, + [865] = {.lex_state = 8, .external_lex_state = 2}, + [866] = {.lex_state = 15}, + [867] = {.lex_state = 10, .external_lex_state = 2}, + [868] = {.lex_state = 10, .external_lex_state = 2}, [869] = {.lex_state = 6, .external_lex_state = 2}, - [870] = {.lex_state = 6, .external_lex_state = 2}, - [871] = {.lex_state = 6, .external_lex_state = 2}, + [870] = {.lex_state = 8, .external_lex_state = 2}, + [871] = {.lex_state = 8, .external_lex_state = 2}, [872] = {.lex_state = 6, .external_lex_state = 2}, - [873] = {.lex_state = 6, .external_lex_state = 2}, - [874] = {.lex_state = 6, .external_lex_state = 2}, + [873] = {.lex_state = 8, .external_lex_state = 2}, + [874] = {.lex_state = 8, .external_lex_state = 2}, [875] = {.lex_state = 6, .external_lex_state = 2}, [876] = {.lex_state = 6, .external_lex_state = 2}, [877] = {.lex_state = 6, .external_lex_state = 2}, @@ -7481,185 +7502,185 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [883] = {.lex_state = 6, .external_lex_state = 2}, [884] = {.lex_state = 6, .external_lex_state = 2}, [885] = {.lex_state = 6, .external_lex_state = 2}, - [886] = {.lex_state = 10, .external_lex_state = 2}, - [887] = {.lex_state = 8, .external_lex_state = 2}, + [886] = {.lex_state = 6, .external_lex_state = 2}, + [887] = {.lex_state = 6, .external_lex_state = 2}, [888] = {.lex_state = 6, .external_lex_state = 2}, - [889] = {.lex_state = 15}, + [889] = {.lex_state = 6, .external_lex_state = 2}, [890] = {.lex_state = 6, .external_lex_state = 2}, - [891] = {.lex_state = 8, .external_lex_state = 2}, - [892] = {.lex_state = 8, .external_lex_state = 2}, + [891] = {.lex_state = 6, .external_lex_state = 2}, + [892] = {.lex_state = 6, .external_lex_state = 2}, [893] = {.lex_state = 6, .external_lex_state = 2}, - [894] = {.lex_state = 8, .external_lex_state = 2}, + [894] = {.lex_state = 6, .external_lex_state = 2}, [895] = {.lex_state = 10, .external_lex_state = 2}, - [896] = {.lex_state = 6, .external_lex_state = 2}, - [897] = {.lex_state = 8, .external_lex_state = 2}, - [898] = {.lex_state = 8, .external_lex_state = 2}, + [896] = {.lex_state = 10, .external_lex_state = 2}, + [897] = {.lex_state = 6, .external_lex_state = 2}, + [898] = {.lex_state = 6, .external_lex_state = 2}, [899] = {.lex_state = 8, .external_lex_state = 2}, - [900] = {.lex_state = 8, .external_lex_state = 2}, - [901] = {.lex_state = 15}, + [900] = {.lex_state = 6, .external_lex_state = 2}, + [901] = {.lex_state = 8, .external_lex_state = 2}, [902] = {.lex_state = 8, .external_lex_state = 2}, [903] = {.lex_state = 8, .external_lex_state = 2}, [904] = {.lex_state = 8, .external_lex_state = 2}, - [905] = {.lex_state = 6, .external_lex_state = 2}, - [906] = {.lex_state = 8, .external_lex_state = 2}, - [907] = {.lex_state = 8, .external_lex_state = 2}, - [908] = {.lex_state = 8, .external_lex_state = 2}, + [905] = {.lex_state = 8, .external_lex_state = 2}, + [906] = {.lex_state = 10, .external_lex_state = 2}, + [907] = {.lex_state = 6, .external_lex_state = 2}, + [908] = {.lex_state = 6, .external_lex_state = 2}, [909] = {.lex_state = 6, .external_lex_state = 2}, - [910] = {.lex_state = 6, .external_lex_state = 2}, - [911] = {.lex_state = 6, .external_lex_state = 2}, + [910] = {.lex_state = 8, .external_lex_state = 2}, + [911] = {.lex_state = 8, .external_lex_state = 2}, [912] = {.lex_state = 6, .external_lex_state = 2}, - [913] = {.lex_state = 6, .external_lex_state = 2}, - [914] = {.lex_state = 8, .external_lex_state = 2}, + [913] = {.lex_state = 8, .external_lex_state = 2}, + [914] = {.lex_state = 15}, [915] = {.lex_state = 8, .external_lex_state = 2}, [916] = {.lex_state = 15}, [917] = {.lex_state = 8, .external_lex_state = 2}, - [918] = {.lex_state = 10, .external_lex_state = 2}, + [918] = {.lex_state = 15}, [919] = {.lex_state = 8, .external_lex_state = 2}, - [920] = {.lex_state = 8, .external_lex_state = 2}, - [921] = {.lex_state = 10, .external_lex_state = 2}, + [920] = {.lex_state = 15}, + [921] = {.lex_state = 8, .external_lex_state = 2}, [922] = {.lex_state = 8, .external_lex_state = 2}, - [923] = {.lex_state = 10, .external_lex_state = 2}, + [923] = {.lex_state = 8, .external_lex_state = 2}, [924] = {.lex_state = 8, .external_lex_state = 2}, [925] = {.lex_state = 8, .external_lex_state = 2}, - [926] = {.lex_state = 10, .external_lex_state = 2}, - [927] = {.lex_state = 8, .external_lex_state = 2}, - [928] = {.lex_state = 8, .external_lex_state = 2}, - [929] = {.lex_state = 8, .external_lex_state = 2}, + [926] = {.lex_state = 8, .external_lex_state = 2}, + [927] = {.lex_state = 15}, + [928] = {.lex_state = 10, .external_lex_state = 2}, + [929] = {.lex_state = 10, .external_lex_state = 2}, [930] = {.lex_state = 8, .external_lex_state = 2}, - [931] = {.lex_state = 8, .external_lex_state = 2}, - [932] = {.lex_state = 8, .external_lex_state = 2}, + [931] = {.lex_state = 10, .external_lex_state = 2}, + [932] = {.lex_state = 10, .external_lex_state = 2}, [933] = {.lex_state = 8, .external_lex_state = 2}, [934] = {.lex_state = 8, .external_lex_state = 2}, - [935] = {.lex_state = 8, .external_lex_state = 2}, + [935] = {.lex_state = 10, .external_lex_state = 2}, [936] = {.lex_state = 8, .external_lex_state = 2}, [937] = {.lex_state = 8, .external_lex_state = 2}, [938] = {.lex_state = 8, .external_lex_state = 2}, [939] = {.lex_state = 8, .external_lex_state = 2}, - [940] = {.lex_state = 8, .external_lex_state = 2}, - [941] = {.lex_state = 8, .external_lex_state = 2}, - [942] = {.lex_state = 10, .external_lex_state = 2}, + [940] = {.lex_state = 10, .external_lex_state = 2}, + [941] = {.lex_state = 10, .external_lex_state = 2}, + [942] = {.lex_state = 8, .external_lex_state = 2}, [943] = {.lex_state = 8, .external_lex_state = 2}, [944] = {.lex_state = 8, .external_lex_state = 2}, - [945] = {.lex_state = 15}, + [945] = {.lex_state = 8, .external_lex_state = 2}, [946] = {.lex_state = 8, .external_lex_state = 2}, [947] = {.lex_state = 8, .external_lex_state = 2}, - [948] = {.lex_state = 10, .external_lex_state = 2}, + [948] = {.lex_state = 8, .external_lex_state = 2}, [949] = {.lex_state = 8, .external_lex_state = 2}, - [950] = {.lex_state = 10, .external_lex_state = 2}, + [950] = {.lex_state = 8, .external_lex_state = 2}, [951] = {.lex_state = 8, .external_lex_state = 2}, - [952] = {.lex_state = 10, .external_lex_state = 2}, + [952] = {.lex_state = 8, .external_lex_state = 2}, [953] = {.lex_state = 8, .external_lex_state = 2}, - [954] = {.lex_state = 10, .external_lex_state = 2}, - [955] = {.lex_state = 10, .external_lex_state = 2}, + [954] = {.lex_state = 8, .external_lex_state = 2}, + [955] = {.lex_state = 8, .external_lex_state = 2}, [956] = {.lex_state = 8, .external_lex_state = 2}, [957] = {.lex_state = 8, .external_lex_state = 2}, - [958] = {.lex_state = 10, .external_lex_state = 2}, + [958] = {.lex_state = 8, .external_lex_state = 2}, [959] = {.lex_state = 8, .external_lex_state = 2}, [960] = {.lex_state = 8, .external_lex_state = 2}, [961] = {.lex_state = 8, .external_lex_state = 2}, [962] = {.lex_state = 8, .external_lex_state = 2}, - [963] = {.lex_state = 8, .external_lex_state = 2}, - [964] = {.lex_state = 10, .external_lex_state = 2}, - [965] = {.lex_state = 10, .external_lex_state = 2}, + [963] = {.lex_state = 10, .external_lex_state = 2}, + [964] = {.lex_state = 15}, + [965] = {.lex_state = 8, .external_lex_state = 2}, [966] = {.lex_state = 8, .external_lex_state = 2}, - [967] = {.lex_state = 10, .external_lex_state = 2}, + [967] = {.lex_state = 8, .external_lex_state = 2}, [968] = {.lex_state = 8, .external_lex_state = 2}, [969] = {.lex_state = 8, .external_lex_state = 2}, - [970] = {.lex_state = 8, .external_lex_state = 2}, + [970] = {.lex_state = 10, .external_lex_state = 2}, [971] = {.lex_state = 8, .external_lex_state = 2}, - [972] = {.lex_state = 8, .external_lex_state = 2}, - [973] = {.lex_state = 10, .external_lex_state = 2}, + [972] = {.lex_state = 10, .external_lex_state = 2}, + [973] = {.lex_state = 8, .external_lex_state = 2}, [974] = {.lex_state = 10, .external_lex_state = 2}, - [975] = {.lex_state = 10, .external_lex_state = 2}, + [975] = {.lex_state = 8, .external_lex_state = 2}, [976] = {.lex_state = 8, .external_lex_state = 2}, - [977] = {.lex_state = 10, .external_lex_state = 2}, - [978] = {.lex_state = 10, .external_lex_state = 2}, + [977] = {.lex_state = 8, .external_lex_state = 2}, + [978] = {.lex_state = 8, .external_lex_state = 2}, [979] = {.lex_state = 10, .external_lex_state = 2}, - [980] = {.lex_state = 10, .external_lex_state = 2}, - [981] = {.lex_state = 6, .external_lex_state = 2}, + [980] = {.lex_state = 8, .external_lex_state = 2}, + [981] = {.lex_state = 10, .external_lex_state = 2}, [982] = {.lex_state = 10, .external_lex_state = 2}, [983] = {.lex_state = 10, .external_lex_state = 2}, - [984] = {.lex_state = 10, .external_lex_state = 2}, - [985] = {.lex_state = 10, .external_lex_state = 2}, + [984] = {.lex_state = 6, .external_lex_state = 2}, + [985] = {.lex_state = 6, .external_lex_state = 2}, [986] = {.lex_state = 10, .external_lex_state = 2}, - [987] = {.lex_state = 10, .external_lex_state = 2}, + [987] = {.lex_state = 6, .external_lex_state = 2}, [988] = {.lex_state = 10, .external_lex_state = 2}, - [989] = {.lex_state = 10, .external_lex_state = 2}, + [989] = {.lex_state = 6, .external_lex_state = 2}, [990] = {.lex_state = 10, .external_lex_state = 2}, [991] = {.lex_state = 10, .external_lex_state = 2}, - [992] = {.lex_state = 6, .external_lex_state = 2}, + [992] = {.lex_state = 10, .external_lex_state = 2}, [993] = {.lex_state = 10, .external_lex_state = 2}, [994] = {.lex_state = 10, .external_lex_state = 2}, - [995] = {.lex_state = 6, .external_lex_state = 2}, + [995] = {.lex_state = 10, .external_lex_state = 2}, [996] = {.lex_state = 10, .external_lex_state = 2}, - [997] = {.lex_state = 6, .external_lex_state = 2}, - [998] = {.lex_state = 6, .external_lex_state = 2}, + [997] = {.lex_state = 10, .external_lex_state = 2}, + [998] = {.lex_state = 10, .external_lex_state = 2}, [999] = {.lex_state = 10, .external_lex_state = 2}, [1000] = {.lex_state = 10, .external_lex_state = 2}, - [1001] = {.lex_state = 6, .external_lex_state = 2}, - [1002] = {.lex_state = 6, .external_lex_state = 2}, - [1003] = {.lex_state = 6, .external_lex_state = 2}, - [1004] = {.lex_state = 6, .external_lex_state = 2}, - [1005] = {.lex_state = 6, .external_lex_state = 2}, - [1006] = {.lex_state = 10, .external_lex_state = 2}, + [1001] = {.lex_state = 10, .external_lex_state = 2}, + [1002] = {.lex_state = 10, .external_lex_state = 2}, + [1003] = {.lex_state = 10, .external_lex_state = 2}, + [1004] = {.lex_state = 10, .external_lex_state = 2}, + [1005] = {.lex_state = 10, .external_lex_state = 2}, + [1006] = {.lex_state = 6, .external_lex_state = 2}, [1007] = {.lex_state = 6, .external_lex_state = 2}, - [1008] = {.lex_state = 6, .external_lex_state = 2}, - [1009] = {.lex_state = 6, .external_lex_state = 2}, - [1010] = {.lex_state = 6, .external_lex_state = 2}, + [1008] = {.lex_state = 10, .external_lex_state = 2}, + [1009] = {.lex_state = 15}, + [1010] = {.lex_state = 8, .external_lex_state = 2}, [1011] = {.lex_state = 6, .external_lex_state = 2}, - [1012] = {.lex_state = 6, .external_lex_state = 2}, + [1012] = {.lex_state = 15}, [1013] = {.lex_state = 15}, [1014] = {.lex_state = 6, .external_lex_state = 2}, - [1015] = {.lex_state = 10, .external_lex_state = 2}, - [1016] = {.lex_state = 8, .external_lex_state = 2}, - [1017] = {.lex_state = 8, .external_lex_state = 2}, - [1018] = {.lex_state = 10, .external_lex_state = 2}, - [1019] = {.lex_state = 10, .external_lex_state = 2}, + [1015] = {.lex_state = 6, .external_lex_state = 2}, + [1016] = {.lex_state = 6, .external_lex_state = 2}, + [1017] = {.lex_state = 6, .external_lex_state = 2}, + [1018] = {.lex_state = 6, .external_lex_state = 2}, + [1019] = {.lex_state = 6, .external_lex_state = 2}, [1020] = {.lex_state = 6, .external_lex_state = 2}, - [1021] = {.lex_state = 10, .external_lex_state = 2}, + [1021] = {.lex_state = 8, .external_lex_state = 2}, [1022] = {.lex_state = 6, .external_lex_state = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, - [1024] = {.lex_state = 6, .external_lex_state = 2}, - [1025] = {.lex_state = 8, .external_lex_state = 2}, + [1023] = {.lex_state = 10, .external_lex_state = 2}, + [1024] = {.lex_state = 10, .external_lex_state = 2}, + [1025] = {.lex_state = 6, .external_lex_state = 2}, [1026] = {.lex_state = 6, .external_lex_state = 2}, - [1027] = {.lex_state = 6, .external_lex_state = 2}, + [1027] = {.lex_state = 10, .external_lex_state = 2}, [1028] = {.lex_state = 6, .external_lex_state = 2}, [1029] = {.lex_state = 6, .external_lex_state = 2}, [1030] = {.lex_state = 6, .external_lex_state = 2}, [1031] = {.lex_state = 6, .external_lex_state = 2}, - [1032] = {.lex_state = 15}, + [1032] = {.lex_state = 6, .external_lex_state = 2}, [1033] = {.lex_state = 6, .external_lex_state = 2}, [1034] = {.lex_state = 6, .external_lex_state = 2}, [1035] = {.lex_state = 6, .external_lex_state = 2}, - [1036] = {.lex_state = 15}, + [1036] = {.lex_state = 6, .external_lex_state = 2}, [1037] = {.lex_state = 6, .external_lex_state = 2}, [1038] = {.lex_state = 6, .external_lex_state = 2}, [1039] = {.lex_state = 6, .external_lex_state = 2}, - [1040] = {.lex_state = 10, .external_lex_state = 2}, + [1040] = {.lex_state = 6, .external_lex_state = 2}, [1041] = {.lex_state = 6, .external_lex_state = 2}, - [1042] = {.lex_state = 15}, + [1042] = {.lex_state = 6, .external_lex_state = 2}, [1043] = {.lex_state = 6, .external_lex_state = 2}, [1044] = {.lex_state = 6, .external_lex_state = 2}, - [1045] = {.lex_state = 15}, + [1045] = {.lex_state = 6, .external_lex_state = 2}, [1046] = {.lex_state = 6, .external_lex_state = 2}, [1047] = {.lex_state = 6, .external_lex_state = 2}, - [1048] = {.lex_state = 6, .external_lex_state = 2}, + [1048] = {.lex_state = 10, .external_lex_state = 2}, [1049] = {.lex_state = 6, .external_lex_state = 2}, [1050] = {.lex_state = 6, .external_lex_state = 2}, [1051] = {.lex_state = 6, .external_lex_state = 2}, - [1052] = {.lex_state = 15}, + [1052] = {.lex_state = 10, .external_lex_state = 2}, [1053] = {.lex_state = 6, .external_lex_state = 2}, - [1054] = {.lex_state = 6, .external_lex_state = 2}, - [1055] = {.lex_state = 15}, + [1054] = {.lex_state = 15}, + [1055] = {.lex_state = 6, .external_lex_state = 2}, [1056] = {.lex_state = 6, .external_lex_state = 2}, - [1057] = {.lex_state = 6, .external_lex_state = 2}, + [1057] = {.lex_state = 15}, [1058] = {.lex_state = 6, .external_lex_state = 2}, - [1059] = {.lex_state = 8, .external_lex_state = 2}, + [1059] = {.lex_state = 6, .external_lex_state = 2}, [1060] = {.lex_state = 6, .external_lex_state = 2}, [1061] = {.lex_state = 6, .external_lex_state = 2}, [1062] = {.lex_state = 6, .external_lex_state = 2}, [1063] = {.lex_state = 6, .external_lex_state = 2}, - [1064] = {.lex_state = 6, .external_lex_state = 2}, + [1064] = {.lex_state = 15}, [1065] = {.lex_state = 6, .external_lex_state = 2}, [1066] = {.lex_state = 6, .external_lex_state = 2}, [1067] = {.lex_state = 6, .external_lex_state = 2}, @@ -7668,27 +7689,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 6, .external_lex_state = 2}, [1071] = {.lex_state = 6, .external_lex_state = 2}, [1072] = {.lex_state = 6, .external_lex_state = 2}, - [1073] = {.lex_state = 6, .external_lex_state = 2}, + [1073] = {.lex_state = 8, .external_lex_state = 2}, [1074] = {.lex_state = 6, .external_lex_state = 2}, [1075] = {.lex_state = 6, .external_lex_state = 2}, [1076] = {.lex_state = 6, .external_lex_state = 2}, [1077] = {.lex_state = 6, .external_lex_state = 2}, - [1078] = {.lex_state = 8, .external_lex_state = 2}, + [1078] = {.lex_state = 6, .external_lex_state = 2}, [1079] = {.lex_state = 6, .external_lex_state = 2}, [1080] = {.lex_state = 6, .external_lex_state = 2}, [1081] = {.lex_state = 6, .external_lex_state = 2}, [1082] = {.lex_state = 6, .external_lex_state = 2}, [1083] = {.lex_state = 6, .external_lex_state = 2}, - [1084] = {.lex_state = 10, .external_lex_state = 2}, - [1085] = {.lex_state = 10, .external_lex_state = 2}, - [1086] = {.lex_state = 10, .external_lex_state = 2}, - [1087] = {.lex_state = 10, .external_lex_state = 2}, - [1088] = {.lex_state = 10, .external_lex_state = 2}, + [1084] = {.lex_state = 6, .external_lex_state = 2}, + [1085] = {.lex_state = 6, .external_lex_state = 2}, + [1086] = {.lex_state = 6, .external_lex_state = 2}, + [1087] = {.lex_state = 8, .external_lex_state = 2}, + [1088] = {.lex_state = 6, .external_lex_state = 2}, [1089] = {.lex_state = 10, .external_lex_state = 2}, - [1090] = {.lex_state = 10, .external_lex_state = 2}, + [1090] = {.lex_state = 6, .external_lex_state = 2}, [1091] = {.lex_state = 10, .external_lex_state = 2}, - [1092] = {.lex_state = 10, .external_lex_state = 2}, - [1093] = {.lex_state = 10, .external_lex_state = 2}, + [1092] = {.lex_state = 15}, + [1093] = {.lex_state = 8, .external_lex_state = 2}, [1094] = {.lex_state = 10, .external_lex_state = 2}, [1095] = {.lex_state = 10, .external_lex_state = 2}, [1096] = {.lex_state = 10, .external_lex_state = 2}, @@ -7718,7 +7739,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1120] = {.lex_state = 10, .external_lex_state = 2}, [1121] = {.lex_state = 10, .external_lex_state = 2}, [1122] = {.lex_state = 10, .external_lex_state = 2}, - [1123] = {.lex_state = 8, .external_lex_state = 2}, + [1123] = {.lex_state = 10, .external_lex_state = 2}, [1124] = {.lex_state = 10, .external_lex_state = 2}, [1125] = {.lex_state = 10, .external_lex_state = 2}, [1126] = {.lex_state = 10, .external_lex_state = 2}, @@ -7747,276 +7768,276 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1149] = {.lex_state = 10, .external_lex_state = 2}, [1150] = {.lex_state = 10, .external_lex_state = 2}, [1151] = {.lex_state = 10, .external_lex_state = 2}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 12}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 13}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 12}, - [1160] = {.lex_state = 12}, - [1161] = {.lex_state = 12}, - [1162] = {.lex_state = 12}, - [1163] = {.lex_state = 12}, - [1164] = {.lex_state = 12}, - [1165] = {.lex_state = 12}, - [1166] = {.lex_state = 12}, - [1167] = {.lex_state = 12}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 10, .external_lex_state = 2}, + [1154] = {.lex_state = 10, .external_lex_state = 2}, + [1155] = {.lex_state = 10, .external_lex_state = 2}, + [1156] = {.lex_state = 10, .external_lex_state = 2}, + [1157] = {.lex_state = 10, .external_lex_state = 2}, + [1158] = {.lex_state = 10, .external_lex_state = 2}, + [1159] = {.lex_state = 10, .external_lex_state = 2}, + [1160] = {.lex_state = 10, .external_lex_state = 2}, + [1161] = {.lex_state = 8, .external_lex_state = 2}, + [1162] = {.lex_state = 10, .external_lex_state = 2}, + [1163] = {.lex_state = 10, .external_lex_state = 2}, + [1164] = {.lex_state = 13}, + [1165] = {.lex_state = 13}, + [1166] = {.lex_state = 13}, + [1167] = {.lex_state = 13}, [1168] = {.lex_state = 12}, - [1169] = {.lex_state = 12}, - [1170] = {.lex_state = 12}, + [1169] = {.lex_state = 13}, + [1170] = {.lex_state = 13}, [1171] = {.lex_state = 12}, [1172] = {.lex_state = 12}, [1173] = {.lex_state = 12}, [1174] = {.lex_state = 12}, [1175] = {.lex_state = 12}, [1176] = {.lex_state = 12}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 156}, - [1179] = {.lex_state = 156}, - [1180] = {.lex_state = 156}, - [1181] = {.lex_state = 156}, - [1182] = {.lex_state = 14}, - [1183] = {.lex_state = 156}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, + [1177] = {.lex_state = 12}, + [1178] = {.lex_state = 12}, + [1179] = {.lex_state = 12}, + [1180] = {.lex_state = 12}, + [1181] = {.lex_state = 12}, + [1182] = {.lex_state = 12}, + [1183] = {.lex_state = 12}, + [1184] = {.lex_state = 12}, + [1185] = {.lex_state = 12}, + [1186] = {.lex_state = 12}, + [1187] = {.lex_state = 12}, + [1188] = {.lex_state = 12}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 12}, + [1190] = {.lex_state = 156}, + [1191] = {.lex_state = 156}, + [1192] = {.lex_state = 156}, + [1193] = {.lex_state = 156}, + [1194] = {.lex_state = 14}, [1195] = {.lex_state = 156}, - [1196] = {.lex_state = 0, .external_lex_state = 3}, - [1197] = {.lex_state = 0, .external_lex_state = 4}, - [1198] = {.lex_state = 12}, - [1199] = {.lex_state = 12}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 0}, + [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 12}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 12}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0, .external_lex_state = 3}, - [1205] = {.lex_state = 0, .external_lex_state = 4}, - [1206] = {.lex_state = 0, .external_lex_state = 4}, - [1207] = {.lex_state = 12}, - [1208] = {.lex_state = 12}, + [1205] = {.lex_state = 0, .external_lex_state = 3}, + [1206] = {.lex_state = 156}, + [1207] = {.lex_state = 0, .external_lex_state = 4}, + [1208] = {.lex_state = 0, .external_lex_state = 3}, [1209] = {.lex_state = 0, .external_lex_state = 4}, - [1210] = {.lex_state = 12}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 156}, - [1213] = {.lex_state = 12}, + [1210] = {.lex_state = 0, .external_lex_state = 4}, + [1211] = {.lex_state = 0, .external_lex_state = 3}, + [1212] = {.lex_state = 0, .external_lex_state = 4}, + [1213] = {.lex_state = 0, .external_lex_state = 4}, [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 14}, - [1216] = {.lex_state = 0, .external_lex_state = 4}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0, .external_lex_state = 3}, + [1215] = {.lex_state = 0, .external_lex_state = 4}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 14}, + [1218] = {.lex_state = 0, .external_lex_state = 4}, [1219] = {.lex_state = 0, .external_lex_state = 4}, - [1220] = {.lex_state = 12}, + [1220] = {.lex_state = 14}, [1221] = {.lex_state = 14}, - [1222] = {.lex_state = 12}, - [1223] = {.lex_state = 0, .external_lex_state = 3}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 14}, [1224] = {.lex_state = 0, .external_lex_state = 3}, - [1225] = {.lex_state = 0, .external_lex_state = 4}, - [1226] = {.lex_state = 0, .external_lex_state = 4}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 156}, - [1229] = {.lex_state = 0, .external_lex_state = 3}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 0, .external_lex_state = 3}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 156}, - [1234] = {.lex_state = 0, .external_lex_state = 4}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0, .external_lex_state = 3}, - [1238] = {.lex_state = 0, .external_lex_state = 4}, - [1239] = {.lex_state = 12}, - [1240] = {.lex_state = 0, .external_lex_state = 3}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 0, .external_lex_state = 3}, + [1227] = {.lex_state = 0, .external_lex_state = 3}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 156}, + [1230] = {.lex_state = 0, .external_lex_state = 4}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 12}, + [1233] = {.lex_state = 0, .external_lex_state = 4}, + [1234] = {.lex_state = 12}, + [1235] = {.lex_state = 0, .external_lex_state = 3}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 12}, + [1239] = {.lex_state = 0, .external_lex_state = 3}, + [1240] = {.lex_state = 156}, [1241] = {.lex_state = 0, .external_lex_state = 3}, - [1242] = {.lex_state = 0, .external_lex_state = 3}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 156}, - [1245] = {.lex_state = 0, .external_lex_state = 4}, + [1242] = {.lex_state = 156}, + [1243] = {.lex_state = 0, .external_lex_state = 4}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 12}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0, .external_lex_state = 4}, - [1249] = {.lex_state = 14}, - [1250] = {.lex_state = 0, .external_lex_state = 3}, - [1251] = {.lex_state = 0, .external_lex_state = 4}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0, .external_lex_state = 3}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0, .external_lex_state = 3}, - [1256] = {.lex_state = 156}, - [1257] = {.lex_state = 0, .external_lex_state = 4}, - [1258] = {.lex_state = 0, .external_lex_state = 4}, - [1259] = {.lex_state = 0, .external_lex_state = 3}, - [1260] = {.lex_state = 14}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 16}, - [1263] = {.lex_state = 16}, - [1264] = {.lex_state = 16}, + [1247] = {.lex_state = 0, .external_lex_state = 4}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 12}, + [1251] = {.lex_state = 0, .external_lex_state = 3}, + [1252] = {.lex_state = 0, .external_lex_state = 3}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0, .external_lex_state = 3}, + [1255] = {.lex_state = 12}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 156}, + [1259] = {.lex_state = 0, .external_lex_state = 4}, + [1260] = {.lex_state = 0, .external_lex_state = 3}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 156}, + [1263] = {.lex_state = 0, .external_lex_state = 4}, + [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 16}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 16}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 156}, - [1278] = {.lex_state = 16}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, + [1268] = {.lex_state = 0, .external_lex_state = 4}, + [1269] = {.lex_state = 0, .external_lex_state = 3}, + [1270] = {.lex_state = 12}, + [1271] = {.lex_state = 12}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 16}, + [1274] = {.lex_state = 16}, + [1275] = {.lex_state = 16}, + [1276] = {.lex_state = 156}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 14}, + [1279] = {.lex_state = 156}, + [1280] = {.lex_state = 16}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 16}, - [1284] = {.lex_state = 16}, + [1282] = {.lex_state = 16}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, [1285] = {.lex_state = 16}, [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, + [1288] = {.lex_state = 16}, [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, + [1290] = {.lex_state = 16}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1292] = {.lex_state = 16}, [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 16}, + [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0, .external_lex_state = 4}, - [1300] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 16}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0, .external_lex_state = 3}, - [1303] = {.lex_state = 16}, - [1304] = {.lex_state = 14}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 16}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 16}, - [1307] = {.lex_state = 0}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 16}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 156}, - [1310] = {.lex_state = 14}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 16}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 16}, - [1317] = {.lex_state = 16}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 14}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 14}, - [1322] = {.lex_state = 14}, - [1323] = {.lex_state = 14}, - [1324] = {.lex_state = 0, .external_lex_state = 5}, + [1317] = {.lex_state = 14}, + [1318] = {.lex_state = 16}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 16}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0, .external_lex_state = 4}, [1325] = {.lex_state = 14}, - [1326] = {.lex_state = 156}, - [1327] = {.lex_state = 14}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 14}, - [1330] = {.lex_state = 0, .external_lex_state = 5}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0, .external_lex_state = 5}, + [1332] = {.lex_state = 156}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 14}, + [1335] = {.lex_state = 156}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 14}, - [1338] = {.lex_state = 14}, + [1338] = {.lex_state = 0}, [1339] = {.lex_state = 14}, [1340] = {.lex_state = 14}, [1341] = {.lex_state = 14}, - [1342] = {.lex_state = 0, .external_lex_state = 5}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0, .external_lex_state = 5}, - [1345] = {.lex_state = 14}, - [1346] = {.lex_state = 14}, + [1342] = {.lex_state = 14}, + [1343] = {.lex_state = 156}, + [1344] = {.lex_state = 14}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 14}, - [1349] = {.lex_state = 156}, - [1350] = {.lex_state = 14}, - [1351] = {.lex_state = 0, .external_lex_state = 5}, - [1352] = {.lex_state = 156}, - [1353] = {.lex_state = 0, .external_lex_state = 5}, - [1354] = {.lex_state = 156}, + [1348] = {.lex_state = 0, .external_lex_state = 5}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 14}, + [1353] = {.lex_state = 14}, + [1354] = {.lex_state = 0}, [1355] = {.lex_state = 0}, [1356] = {.lex_state = 0, .external_lex_state = 5}, - [1357] = {.lex_state = 0}, + [1357] = {.lex_state = 14}, [1358] = {.lex_state = 14}, - [1359] = {.lex_state = 0}, + [1359] = {.lex_state = 14}, [1360] = {.lex_state = 14}, - [1361] = {.lex_state = 14}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0, .external_lex_state = 5}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 14}, + [1363] = {.lex_state = 14}, + [1364] = {.lex_state = 14}, [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0, .external_lex_state = 5}, - [1367] = {.lex_state = 0}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 14}, [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0, .external_lex_state = 5}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 14}, - [1373] = {.lex_state = 156}, - [1374] = {.lex_state = 14}, - [1375] = {.lex_state = 156}, - [1376] = {.lex_state = 14}, + [1371] = {.lex_state = 14}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 156}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0, .external_lex_state = 5}, [1377] = {.lex_state = 0}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0, .external_lex_state = 5}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 14}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 14}, + [1381] = {.lex_state = 0, .external_lex_state = 5}, + [1382] = {.lex_state = 0, .external_lex_state = 5}, + [1383] = {.lex_state = 14}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 14}, - [1388] = {.lex_state = 0, .external_lex_state = 5}, - [1389] = {.lex_state = 0}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 14}, + [1389] = {.lex_state = 14}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0, .external_lex_state = 5}, - [1393] = {.lex_state = 156}, + [1391] = {.lex_state = 14}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0, .external_lex_state = 5}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0, .external_lex_state = 5}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 0}, + [1395] = {.lex_state = 0, .external_lex_state = 5}, + [1396] = {.lex_state = 0, .external_lex_state = 5}, + [1397] = {.lex_state = 156}, + [1398] = {.lex_state = 156}, + [1399] = {.lex_state = 0, .external_lex_state = 5}, + [1400] = {.lex_state = 0, .external_lex_state = 5}, + [1401] = {.lex_state = 0, .external_lex_state = 5}, [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, + [1404] = {.lex_state = 0, .external_lex_state = 5}, + [1405] = {.lex_state = 14}, + [1406] = {.lex_state = 0, .external_lex_state = 5}, + [1407] = {.lex_state = 156}, + [1408] = {.lex_state = 0, .external_lex_state = 5}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, + [1410] = {.lex_state = 14}, + [1411] = {.lex_state = 14}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 14}, + [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 14}, - [1421] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 14}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, @@ -8025,9 +8046,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 14}, + [1430] = {.lex_state = 0}, [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0}, + [1432] = {.lex_state = 156}, [1433] = {.lex_state = 0}, [1434] = {.lex_state = 0}, [1435] = {.lex_state = 0}, @@ -8039,7 +8060,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1441] = {.lex_state = 0}, [1442] = {.lex_state = 0}, [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, + [1444] = {.lex_state = 14}, [1445] = {.lex_state = 0}, [1446] = {.lex_state = 0}, [1447] = {.lex_state = 0}, @@ -8054,9 +8075,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1456] = {.lex_state = 0}, [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 0}, + [1459] = {.lex_state = 156}, [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, + [1461] = {.lex_state = 14}, [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, @@ -8065,11 +8086,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, + [1470] = {.lex_state = 14}, [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 156}, + [1474] = {.lex_state = 0}, [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, @@ -8080,22 +8101,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 14}, - [1485] = {.lex_state = 156}, + [1485] = {.lex_state = 0}, [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 14}, + [1490] = {.lex_state = 0}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0, .external_lex_state = 5}, + [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, + [1500] = {.lex_state = 14}, [1501] = {.lex_state = 0}, [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, @@ -8103,8 +8124,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1505] = {.lex_state = 0}, [1506] = {.lex_state = 0}, [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 156}, - [1509] = {.lex_state = 156}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0, .external_lex_state = 5}, [1510] = {.lex_state = 0}, [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, @@ -8117,10 +8138,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1519] = {.lex_state = 0}, [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, + [1522] = {.lex_state = 156}, [1523] = {.lex_state = 0}, [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, + [1525] = {.lex_state = 156}, [1526] = {.lex_state = 0}, [1527] = {.lex_state = 0}, [1528] = {.lex_state = 0}, @@ -8132,29 +8153,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1534] = {.lex_state = 0}, [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 156}, + [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, + [1544] = {.lex_state = 156}, [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 156}, + [1546] = {.lex_state = 0}, [1547] = {.lex_state = 0}, [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 14}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 156}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 156}, + [1552] = {.lex_state = 0}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 156}, - [1556] = {.lex_state = 18}, + [1554] = {.lex_state = 156}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, [1557] = {.lex_state = 0}, [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 156}, + [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, [1562] = {.lex_state = 0}, @@ -8163,31 +8184,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 156}, + [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0, .external_lex_state = 6}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 414}, + [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 18}, + [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, + [1582] = {.lex_state = 156}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, + [1586] = {.lex_state = 156}, + [1587] = {.lex_state = 414}, [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 18}, - [1590] = {.lex_state = 156}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 18}, + [1592] = {.lex_state = 156}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, @@ -8199,54 +8220,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1601] = {.lex_state = 0}, [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0, .external_lex_state = 7}, - [1605] = {.lex_state = 0, .external_lex_state = 7}, + [1604] = {.lex_state = 156}, + [1605] = {.lex_state = 0, .external_lex_state = 6}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 18}, - [1608] = {.lex_state = 18}, - [1609] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 18}, [1610] = {.lex_state = 0}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 156}, + [1612] = {.lex_state = 0}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0, .external_lex_state = 6}, + [1617] = {.lex_state = 156}, + [1618] = {.lex_state = 0, .external_lex_state = 6}, + [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0, .external_lex_state = 7}, + [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0, .external_lex_state = 6}, - [1626] = {.lex_state = 0}, + [1625] = {.lex_state = 156}, + [1626] = {.lex_state = 156}, [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0, .external_lex_state = 6}, - [1630] = {.lex_state = 156}, + [1628] = {.lex_state = 0, .external_lex_state = 7}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 0}, [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0, .external_lex_state = 7}, - [1633] = {.lex_state = 0, .external_lex_state = 6}, - [1634] = {.lex_state = 18}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0, .external_lex_state = 7}, + [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0, .external_lex_state = 7}, - [1637] = {.lex_state = 0, .external_lex_state = 6}, + [1636] = {.lex_state = 0, .external_lex_state = 6}, + [1637] = {.lex_state = 0}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0, .external_lex_state = 7}, - [1641] = {.lex_state = 0, .external_lex_state = 6}, - [1642] = {.lex_state = 156}, - [1643] = {.lex_state = 0}, + [1639] = {.lex_state = 0, .external_lex_state = 7}, + [1640] = {.lex_state = 18}, + [1641] = {.lex_state = 18}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0, .external_lex_state = 7}, [1644] = {.lex_state = 18}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, + [1646] = {.lex_state = 0, .external_lex_state = 6}, + [1647] = {.lex_state = 0, .external_lex_state = 7}, + [1648] = {.lex_state = 18}, [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {(TSStateId)(-1)}, + [1650] = {.lex_state = 0, .external_lex_state = 6}, + [1651] = {.lex_state = 0, .external_lex_state = 7}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 18}, + [1654] = {.lex_state = 0, .external_lex_state = 6}, + [1655] = {.lex_state = 0, .external_lex_state = 7}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 0}, + [1665] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8337,8 +8372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1), [sym_qmark] = ACTIONS(1), [sym_selbrace] = ACTIONS(1), - [sym__fixed_string] = ACTIONS(1), - [sym__expandable_string] = ACTIONS(1), + [sym__sq_string] = ACTIONS(1), + [sym__dq_string] = ACTIONS(1), [sym__heredoc_start] = ACTIONS(1), [sym__heredoc_body] = ACTIONS(1), [sym__heredoc_end] = ACTIONS(1), @@ -8346,50 +8381,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_escape_sequence] = ACTIONS(1), }, [1] = { - [sym_manifest] = STATE(1591), - [sym__statements] = STATE(19), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_manifest] = STATE(1627), + [sym__statements] = STATE(22), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(1), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -8437,48 +8473,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [2] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(2), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -8527,48 +8564,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [3] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(3), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -8617,50 +8655,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [4] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(5), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(4), - [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(75), [anon_sym_LPAREN] = ACTIONS(9), @@ -8707,50 +8746,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [5] = { - [sym__statements] = STATE(22), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(5), + [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(77), [anon_sym_LPAREN] = ACTIONS(9), @@ -8797,50 +8837,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [6] = { - [sym__statements] = STATE(24), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(6), + [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(79), [anon_sym_LPAREN] = ACTIONS(9), @@ -8887,49 +8928,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [7] = { - [sym__statements] = STATE(3), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(14), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(7), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(81), @@ -8977,49 +9019,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [8] = { - [sym__statements] = STATE(14), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(10), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(83), @@ -9067,50 +9110,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [9] = { - [sym__statements] = STATE(10), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(9), + [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(9), @@ -9157,48 +9201,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [10] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(10), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -9247,49 +9292,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [11] = { - [sym__statements] = STATE(13), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(16), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(11), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(89), @@ -9337,49 +9383,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [12] = { - [sym__statements] = STATE(4), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(6), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(91), @@ -9427,50 +9474,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [13] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(9), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(13), - [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(93), [anon_sym_LPAREN] = ACTIONS(9), @@ -9517,48 +9565,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [14] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(14), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -9607,50 +9656,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [15] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(3), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(15), - [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_LPAREN] = ACTIONS(9), @@ -9697,50 +9747,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [16] = { - [sym__statements] = STATE(15), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(16), + [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(99), [anon_sym_LPAREN] = ACTIONS(9), @@ -9787,50 +9838,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [17] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(2), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(17), - [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(101), [anon_sym_LPAREN] = ACTIONS(9), @@ -9877,49 +9929,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [18] = { - [sym__statements] = STATE(17), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(24), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(18), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(103), @@ -9967,52 +10020,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [19] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(105), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), @@ -10057,49 +10111,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [20] = { - [sym__statements] = STATE(2), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__statements] = STATE(19), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(107), @@ -10147,48 +10202,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [21] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(21), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -10237,52 +10293,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [22] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(22), + [ts_builtin_sym_end] = ACTIONS(111), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(111), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), @@ -10328,48 +10385,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [23] = { [sym__statements] = STATE(21), - [sym_statement] = STATE(602), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(612), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(23), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(113), @@ -10417,48 +10475,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [24] = { - [sym_statement] = STATE(609), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(608), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(24), [anon_sym_SEMI] = ACTIONS(69), [anon_sym_LBRACE] = ACTIONS(7), @@ -10507,48 +10566,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [25] = { - [sym_statement] = STATE(605), - [sym_statement_function] = STATE(603), - [sym__assignment] = STATE(601), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_statement_function_keywords] = STATE(390), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_statement] = STATE(610), + [sym_statement_function] = STATE(613), + [sym__assignment] = STATE(605), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_statement_function_keywords] = STATE(402), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(25), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -10595,61 +10655,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [26] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1639), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1441), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(26), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(121), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(129), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -10678,61 +10739,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [27] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1583), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1608), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(27), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(177), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -10761,61 +10823,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [28] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1572), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1514), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(28), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(179), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(179), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -10844,61 +10907,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [29] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1517), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1624), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(29), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(181), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -10927,61 +10991,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [30] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1648), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1572), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(30), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(183), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11010,61 +11075,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [31] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1554), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1629), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(31), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(185), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11093,61 +11159,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [32] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1522), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1577), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(32), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(187), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11176,61 +11243,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [33] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1595), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1575), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(33), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(189), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11259,61 +11327,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [34] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1650), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1602), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(34), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(191), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11342,61 +11411,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [35] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1594), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1578), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(35), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(193), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11425,61 +11495,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [36] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1563), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1449), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(36), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(195), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(195), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11508,60 +11579,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [37] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1488), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1467), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(37), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_RBRACK] = ACTIONS(197), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), @@ -11591,61 +11663,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [38] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1446), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1568), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(38), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(199), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11674,61 +11747,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [39] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1578), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1615), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(39), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(201), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11757,61 +11831,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [40] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1577), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1613), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(40), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(203), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11840,61 +11915,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [41] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1558), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1457), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(41), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(205), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(205), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -11923,61 +11999,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [42] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1491), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1635), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(42), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(207), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12006,61 +12083,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [43] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1610), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1606), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(43), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(209), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12089,61 +12167,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [44] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1611), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1569), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(44), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(211), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12172,61 +12251,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [45] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1624), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1619), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(45), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(213), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12255,61 +12335,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [46] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entries] = STATE(1427), - [sym__collection_entry] = STATE(1471), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1630), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(46), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12338,61 +12419,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [47] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1620), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1607), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(47), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(217), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12421,61 +12503,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [48] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1617), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1585), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(48), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(219), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12504,61 +12587,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [49] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1540), - [sym_argument_list] = STATE(1616), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1571), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(49), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(221), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12587,61 +12671,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [50] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1599), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1526), + [sym_argument_list] = STATE(1597), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(50), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_RPAREN] = ACTIONS(223), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12670,61 +12755,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [51] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1597), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entries] = STATE(1507), + [sym__collection_entry] = STATE(1513), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(51), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(225), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(225), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12753,60 +12839,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [52] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1561), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1623), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(52), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -12835,224 +12922,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [53] = { - [sym_resource_body] = STATE(1534), - [sym_resource_title] = STATE(1615), - [sym__resource_bodies] = STATE(1511), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym__attribute_operations] = STATE(1512), - [sym_attribute] = STATE(1343), - [sym__attribute_name] = STATE(1538), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_keyword] = STATE(1473), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1601), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(53), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_in] = ACTIONS(241), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_and] = ACTIONS(241), - [anon_sym_or] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(241), - [anon_sym_else] = ACTIONS(241), - [anon_sym_unless] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_define] = ACTIONS(251), - [anon_sym_plan] = ACTIONS(253), - [anon_sym_apply] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_inherits] = ACTIONS(241), - [anon_sym_node] = ACTIONS(259), - [anon_sym_function] = ACTIONS(261), - [anon_sym_type] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(267), - [anon_sym_attr] = ACTIONS(267), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_undef] = ACTIONS(279), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(283), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(143), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_type] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym__] = ACTIONS(163), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), }, [54] = { - [sym_elsif] = STATE(137), - [sym_else] = STATE(170), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(54), - [aux_sym_if_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(289), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(291), - [anon_sym_PLUS_EQ] = ACTIONS(289), - [anon_sym_DASH_EQ] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(289), - [anon_sym_TILDE_GT] = ACTIONS(289), - [anon_sym_LT_DASH] = ACTIONS(289), - [anon_sym_LT_TILDE] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(291), - [anon_sym_AT_AT] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(289), - [anon_sym_in] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(289), - [anon_sym_BANG_TILDE] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PERCENT] = ACTIONS(289), - [anon_sym_LT_LT] = ACTIONS(291), - [anon_sym_GT_GT] = ACTIONS(289), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(289), - [anon_sym_and] = ACTIONS(291), - [anon_sym_or] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_elsif] = ACTIONS(293), - [anon_sym_else] = ACTIONS(295), - [anon_sym_unless] = ACTIONS(291), - [anon_sym_case] = ACTIONS(291), - [anon_sym_LT_PIPE] = ACTIONS(289), - [anon_sym_LT_LT_PIPE] = ACTIONS(289), - [anon_sym_define] = ACTIONS(291), - [anon_sym_plan] = ACTIONS(291), - [anon_sym_apply] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_node] = ACTIONS(291), - [anon_sym_function] = ACTIONS(291), - [anon_sym_type] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(289), - [anon_sym_private] = ACTIONS(291), - [anon_sym_attr] = ACTIONS(291), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_AT_LPAREN] = ACTIONS(289), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(291), - [anon_sym_default] = ACTIONS(291), - [anon_sym_undef] = ACTIONS(291), - [anon_sym_include] = ACTIONS(291), - [anon_sym_require] = ACTIONS(291), - [anon_sym_contain] = ACTIONS(291), - [anon_sym_tag] = ACTIONS(291), - [anon_sym_debug] = ACTIONS(291), - [anon_sym_info] = ACTIONS(291), - [anon_sym_notice] = ACTIONS(291), - [anon_sym_warning] = ACTIONS(291), - [anon_sym_err] = ACTIONS(291), - [anon_sym_fail] = ACTIONS(291), - [sym_type] = ACTIONS(289), - [sym_name] = ACTIONS(291), - [sym_number] = ACTIONS(289), - [sym_true] = ACTIONS(291), - [sym_false] = ACTIONS(291), - [sym_qmark] = ACTIONS(289), - }, - [55] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(55), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(297), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(227), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13080,61 +13087,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [56] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(56), + [55] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1579), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(55), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(299), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13162,61 +13170,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, + [56] = { + [sym_resource_body] = STATE(1447), + [sym_resource_title] = STATE(1614), + [sym__resource_bodies] = STATE(1479), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym__attribute_operations] = STATE(1496), + [sym_attribute] = STATE(1377), + [sym__attribute_name] = STATE(1499), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_keyword] = STATE(1504), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(56), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_in] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_and] = ACTIONS(243), + [anon_sym_or] = ACTIONS(243), + [anon_sym_if] = ACTIONS(247), + [anon_sym_elsif] = ACTIONS(243), + [anon_sym_else] = ACTIONS(243), + [anon_sym_unless] = ACTIONS(249), + [anon_sym_case] = ACTIONS(251), + [anon_sym_define] = ACTIONS(253), + [anon_sym_plan] = ACTIONS(255), + [anon_sym_apply] = ACTIONS(257), + [anon_sym_class] = ACTIONS(259), + [anon_sym_inherits] = ACTIONS(243), + [anon_sym_node] = ACTIONS(261), + [anon_sym_function] = ACTIONS(263), + [anon_sym_type] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(269), + [anon_sym_attr] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(279), + [anon_sym_undef] = ACTIONS(281), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(285), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, [57] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1570), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(57), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13245,142 +13337,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [58] = { - [sym_elsif] = STATE(137), - [sym_else] = STATE(191), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1593), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(58), - [aux_sym_if_repeat1] = STATE(79), - [ts_builtin_sym_end] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(303), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(305), - [anon_sym_PLUS_EQ] = ACTIONS(303), - [anon_sym_DASH_EQ] = ACTIONS(303), - [anon_sym_DASH_GT] = ACTIONS(303), - [anon_sym_TILDE_GT] = ACTIONS(303), - [anon_sym_LT_DASH] = ACTIONS(303), - [anon_sym_LT_TILDE] = ACTIONS(303), - [anon_sym_AT] = ACTIONS(305), - [anon_sym_AT_AT] = ACTIONS(303), - [anon_sym_BANG] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(305), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_in] = ACTIONS(305), - [anon_sym_EQ_TILDE] = ACTIONS(303), - [anon_sym_BANG_TILDE] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(305), - [anon_sym_SLASH] = ACTIONS(303), - [anon_sym_PERCENT] = ACTIONS(303), - [anon_sym_LT_LT] = ACTIONS(305), - [anon_sym_GT_GT] = ACTIONS(303), - [anon_sym_BANG_EQ] = ACTIONS(303), - [anon_sym_EQ_EQ] = ACTIONS(303), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(303), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(303), - [anon_sym_and] = ACTIONS(305), - [anon_sym_or] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(303), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_if] = ACTIONS(305), - [anon_sym_elsif] = ACTIONS(293), - [anon_sym_else] = ACTIONS(295), - [anon_sym_unless] = ACTIONS(305), - [anon_sym_case] = ACTIONS(305), - [anon_sym_LT_PIPE] = ACTIONS(303), - [anon_sym_LT_LT_PIPE] = ACTIONS(303), - [anon_sym_define] = ACTIONS(305), - [anon_sym_plan] = ACTIONS(305), - [anon_sym_apply] = ACTIONS(305), - [anon_sym_class] = ACTIONS(305), - [anon_sym_node] = ACTIONS(305), - [anon_sym_function] = ACTIONS(305), - [anon_sym_type] = ACTIONS(305), - [anon_sym_DOLLAR] = ACTIONS(303), - [anon_sym_private] = ACTIONS(305), - [anon_sym_attr] = ACTIONS(305), - [anon_sym_SQUOTE] = ACTIONS(303), - [anon_sym_DQUOTE] = ACTIONS(303), - [anon_sym_AT_LPAREN] = ACTIONS(303), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(305), - [anon_sym_default] = ACTIONS(305), - [anon_sym_undef] = ACTIONS(305), - [anon_sym_include] = ACTIONS(305), - [anon_sym_require] = ACTIONS(305), - [anon_sym_contain] = ACTIONS(305), - [anon_sym_tag] = ACTIONS(305), - [anon_sym_debug] = ACTIONS(305), - [anon_sym_info] = ACTIONS(305), - [anon_sym_notice] = ACTIONS(305), - [anon_sym_warning] = ACTIONS(305), - [anon_sym_err] = ACTIONS(305), - [anon_sym_fail] = ACTIONS(305), - [sym_type] = ACTIONS(303), - [sym_name] = ACTIONS(305), - [sym_number] = ACTIONS(303), - [sym_true] = ACTIONS(305), - [sym_false] = ACTIONS(305), - [sym_qmark] = ACTIONS(303), - }, - [59] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1587), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(59), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13408,143 +13419,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, + [59] = { + [sym_resource_body] = STATE(1447), + [sym_resource_title] = STATE(1614), + [sym__resource_bodies] = STATE(1495), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym__attribute_operations] = STATE(1496), + [sym_attribute] = STATE(1377), + [sym__attribute_name] = STATE(1499), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_keyword] = STATE(1504), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(241), + [anon_sym_in] = ACTIONS(243), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_and] = ACTIONS(243), + [anon_sym_or] = ACTIONS(243), + [anon_sym_if] = ACTIONS(247), + [anon_sym_elsif] = ACTIONS(243), + [anon_sym_else] = ACTIONS(243), + [anon_sym_unless] = ACTIONS(249), + [anon_sym_case] = ACTIONS(251), + [anon_sym_define] = ACTIONS(253), + [anon_sym_plan] = ACTIONS(255), + [anon_sym_apply] = ACTIONS(257), + [anon_sym_class] = ACTIONS(259), + [anon_sym_inherits] = ACTIONS(243), + [anon_sym_node] = ACTIONS(261), + [anon_sym_function] = ACTIONS(263), + [anon_sym_type] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(269), + [anon_sym_attr] = ACTIONS(269), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(279), + [anon_sym_undef] = ACTIONS(281), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(285), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, [60] = { - [sym_resource_body] = STATE(1534), - [sym_resource_title] = STATE(1615), - [sym__resource_bodies] = STATE(1486), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym__attribute_operations] = STATE(1512), - [sym_attribute] = STATE(1343), - [sym__attribute_name] = STATE(1538), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_keyword] = STATE(1473), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(60), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_in] = ACTIONS(241), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_and] = ACTIONS(241), - [anon_sym_or] = ACTIONS(241), - [anon_sym_if] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(241), - [anon_sym_else] = ACTIONS(241), - [anon_sym_unless] = ACTIONS(247), - [anon_sym_case] = ACTIONS(249), - [anon_sym_define] = ACTIONS(251), - [anon_sym_plan] = ACTIONS(253), - [anon_sym_apply] = ACTIONS(255), - [anon_sym_class] = ACTIONS(257), - [anon_sym_inherits] = ACTIONS(241), - [anon_sym_node] = ACTIONS(259), - [anon_sym_function] = ACTIONS(261), - [anon_sym_type] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(267), - [anon_sym_attr] = ACTIONS(267), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(277), - [anon_sym_undef] = ACTIONS(279), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(283), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [61] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1565), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(61), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(291), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13572,61 +13585,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [62] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1609), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(62), + [61] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1488), + [sym__arguments] = STATE(1487), + [sym_argument_list_comma] = STATE(1610), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(61), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13654,61 +13668,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [63] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(63), + [62] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(62), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(293), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13736,61 +13751,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [64] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(64), + [63] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(63), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(295), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13818,61 +13834,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [65] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1573), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(65), + [64] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(64), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(297), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13900,61 +13917,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [66] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1437), - [sym__arguments] = STATE(1431), - [sym_argument_list_comma] = STATE(1600), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(66), + [65] = { + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1515), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym__collection_entry] = STATE(1481), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1369), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(65), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(299), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -13982,61 +14000,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [67] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1453), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym__collection_entry] = STATE(1530), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1391), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(67), + [66] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(66), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(301), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14064,60 +14082,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [68] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1440), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(68), + [67] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1517), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(67), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14145,60 +14164,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, + [68] = { + [sym_elsif] = STATE(117), + [sym_else] = STATE(171), + [sym_comment] = STATE(68), + [aux_sym_if_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(303), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(305), + [anon_sym_PLUS_EQ] = ACTIONS(303), + [anon_sym_DASH_EQ] = ACTIONS(303), + [anon_sym_DASH_GT] = ACTIONS(303), + [anon_sym_TILDE_GT] = ACTIONS(303), + [anon_sym_LT_DASH] = ACTIONS(303), + [anon_sym_LT_TILDE] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(305), + [anon_sym_AT_AT] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_in] = ACTIONS(305), + [anon_sym_EQ_TILDE] = ACTIONS(303), + [anon_sym_BANG_TILDE] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(303), + [anon_sym_PERCENT] = ACTIONS(303), + [anon_sym_LT_LT] = ACTIONS(305), + [anon_sym_GT_GT] = ACTIONS(303), + [anon_sym_BANG_EQ] = ACTIONS(303), + [anon_sym_EQ_EQ] = ACTIONS(303), + [anon_sym_GT] = ACTIONS(305), + [anon_sym_GT_EQ] = ACTIONS(303), + [anon_sym_LT] = ACTIONS(305), + [anon_sym_LT_EQ] = ACTIONS(303), + [anon_sym_and] = ACTIONS(305), + [anon_sym_or] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(303), + [anon_sym_if] = ACTIONS(305), + [anon_sym_elsif] = ACTIONS(307), + [anon_sym_else] = ACTIONS(309), + [anon_sym_unless] = ACTIONS(305), + [anon_sym_case] = ACTIONS(305), + [anon_sym_LT_PIPE] = ACTIONS(303), + [anon_sym_LT_LT_PIPE] = ACTIONS(303), + [anon_sym_define] = ACTIONS(305), + [anon_sym_plan] = ACTIONS(305), + [anon_sym_apply] = ACTIONS(305), + [anon_sym_class] = ACTIONS(305), + [anon_sym_node] = ACTIONS(305), + [anon_sym_function] = ACTIONS(305), + [anon_sym_type] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(303), + [anon_sym_private] = ACTIONS(305), + [anon_sym_attr] = ACTIONS(305), + [anon_sym_SQUOTE] = ACTIONS(303), + [anon_sym_DQUOTE] = ACTIONS(303), + [anon_sym_AT_LPAREN] = ACTIONS(303), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(305), + [anon_sym_default] = ACTIONS(305), + [anon_sym_undef] = ACTIONS(305), + [anon_sym_include] = ACTIONS(305), + [anon_sym_require] = ACTIONS(305), + [anon_sym_contain] = ACTIONS(305), + [anon_sym_tag] = ACTIONS(305), + [anon_sym_debug] = ACTIONS(305), + [anon_sym_info] = ACTIONS(305), + [anon_sym_notice] = ACTIONS(305), + [anon_sym_warning] = ACTIONS(305), + [anon_sym_err] = ACTIONS(305), + [anon_sym_fail] = ACTIONS(305), + [sym_type] = ACTIONS(303), + [sym_name] = ACTIONS(305), + [sym_number] = ACTIONS(303), + [sym_true] = ACTIONS(305), + [sym_false] = ACTIONS(305), + [sym_qmark] = ACTIONS(303), + }, [69] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1464), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(69), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(311), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14227,59 +14329,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [70] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1454), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(70), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(317), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14308,59 +14411,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [71] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1499), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1505), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(71), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14389,59 +14493,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [72] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1506), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(72), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14470,59 +14575,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [73] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(73), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(315), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14551,59 +14657,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [74] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1470), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1536), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(74), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14632,59 +14739,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [75] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1414), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1435), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(75), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14713,59 +14821,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [76] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym_elsif] = STATE(117), + [sym_else] = STATE(157), [sym_comment] = STATE(76), + [aux_sym_if_repeat1] = STATE(68), + [ts_builtin_sym_end] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(319), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_PLUS_EQ] = ACTIONS(319), + [anon_sym_DASH_EQ] = ACTIONS(319), + [anon_sym_DASH_GT] = ACTIONS(319), + [anon_sym_TILDE_GT] = ACTIONS(319), + [anon_sym_LT_DASH] = ACTIONS(319), + [anon_sym_LT_TILDE] = ACTIONS(319), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_AT_AT] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_in] = ACTIONS(321), + [anon_sym_EQ_TILDE] = ACTIONS(319), + [anon_sym_BANG_TILDE] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_BANG_EQ] = ACTIONS(319), + [anon_sym_EQ_EQ] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(321), + [anon_sym_GT_EQ] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(321), + [anon_sym_LT_EQ] = ACTIONS(319), + [anon_sym_and] = ACTIONS(321), + [anon_sym_or] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_DOT] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_elsif] = ACTIONS(307), + [anon_sym_else] = ACTIONS(309), + [anon_sym_unless] = ACTIONS(321), + [anon_sym_case] = ACTIONS(321), + [anon_sym_LT_PIPE] = ACTIONS(319), + [anon_sym_LT_LT_PIPE] = ACTIONS(319), + [anon_sym_define] = ACTIONS(321), + [anon_sym_plan] = ACTIONS(321), + [anon_sym_apply] = ACTIONS(321), + [anon_sym_class] = ACTIONS(321), + [anon_sym_node] = ACTIONS(321), + [anon_sym_function] = ACTIONS(321), + [anon_sym_type] = ACTIONS(321), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_private] = ACTIONS(321), + [anon_sym_attr] = ACTIONS(321), + [anon_sym_SQUOTE] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(319), + [anon_sym_AT_LPAREN] = ACTIONS(319), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(321), + [anon_sym_default] = ACTIONS(321), + [anon_sym_undef] = ACTIONS(321), + [anon_sym_include] = ACTIONS(321), + [anon_sym_require] = ACTIONS(321), + [anon_sym_contain] = ACTIONS(321), + [anon_sym_tag] = ACTIONS(321), + [anon_sym_debug] = ACTIONS(321), + [anon_sym_info] = ACTIONS(321), + [anon_sym_notice] = ACTIONS(321), + [anon_sym_warning] = ACTIONS(321), + [anon_sym_err] = ACTIONS(321), + [anon_sym_fail] = ACTIONS(321), + [sym_type] = ACTIONS(319), + [sym_name] = ACTIONS(321), + [sym_number] = ACTIONS(319), + [sym_true] = ACTIONS(321), + [sym_false] = ACTIONS(321), + [sym_qmark] = ACTIONS(319), + }, + [77] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1462), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(77), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(325), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14793,60 +14984,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [77] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(77), + [78] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1417), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(78), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14874,60 +15066,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [78] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1506), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(78), + [79] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1533), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(79), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -14955,141 +15148,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [79] = { - [sym_elsif] = STATE(137), - [sym_comment] = STATE(79), - [aux_sym_if_repeat1] = STATE(79), - [ts_builtin_sym_end] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(329), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_DASH_GT] = ACTIONS(329), - [anon_sym_TILDE_GT] = ACTIONS(329), - [anon_sym_LT_DASH] = ACTIONS(329), - [anon_sym_LT_TILDE] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(331), - [anon_sym_AT_AT] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_in] = ACTIONS(331), - [anon_sym_EQ_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_and] = ACTIONS(331), - [anon_sym_or] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(329), - [anon_sym_if] = ACTIONS(331), - [anon_sym_elsif] = ACTIONS(333), - [anon_sym_else] = ACTIONS(331), - [anon_sym_unless] = ACTIONS(331), - [anon_sym_case] = ACTIONS(331), - [anon_sym_LT_PIPE] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_define] = ACTIONS(331), - [anon_sym_plan] = ACTIONS(331), - [anon_sym_apply] = ACTIONS(331), - [anon_sym_class] = ACTIONS(331), - [anon_sym_node] = ACTIONS(331), - [anon_sym_function] = ACTIONS(331), - [anon_sym_type] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_private] = ACTIONS(331), - [anon_sym_attr] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(329), - [anon_sym_AT_LPAREN] = ACTIONS(329), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_default] = ACTIONS(331), - [anon_sym_undef] = ACTIONS(331), - [anon_sym_include] = ACTIONS(331), - [anon_sym_require] = ACTIONS(331), - [anon_sym_contain] = ACTIONS(331), - [anon_sym_tag] = ACTIONS(331), - [anon_sym_debug] = ACTIONS(331), - [anon_sym_info] = ACTIONS(331), - [anon_sym_notice] = ACTIONS(331), - [anon_sym_warning] = ACTIONS(331), - [anon_sym_err] = ACTIONS(331), - [anon_sym_fail] = ACTIONS(331), - [sym_type] = ACTIONS(329), - [sym_name] = ACTIONS(331), - [sym_number] = ACTIONS(329), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_qmark] = ACTIONS(329), - }, [80] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1492), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1501), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(80), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15118,59 +15231,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [81] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1476), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(81), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(323), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15199,59 +15313,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [82] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1515), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1463), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(82), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(325), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15280,59 +15395,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [83] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1521), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1437), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(83), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15361,59 +15477,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [84] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1507), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1553), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(84), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(338), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15442,59 +15559,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [85] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(85), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(329), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15523,59 +15641,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [86] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1521), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(86), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15604,59 +15723,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [87] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1448), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1424), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(87), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15685,59 +15805,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [88] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1472), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(88), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(333), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15766,59 +15887,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [89] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1403), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1422), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(89), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15847,59 +15969,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [90] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1513), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1556), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(90), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -15928,59 +16051,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [91] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(91), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(344), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(337), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16009,59 +16133,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [92] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(92), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(346), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(339), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16090,59 +16215,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [93] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1520), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(93), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(348), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16171,59 +16297,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [94] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1514), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1486), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(94), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16252,59 +16379,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [95] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1502), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hashpairs] = STATE(1428), + [sym_hashpair] = STATE(1510), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(95), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16333,59 +16461,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [96] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1445), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(96), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(343), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16414,59 +16543,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [97] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hashpairs] = STATE(1480), - [sym_hashpair] = STATE(1454), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(97), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(352), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(345), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16495,59 +16625,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [98] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(98), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(347), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16576,59 +16707,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [99] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(99), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(356), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_RBRACK] = ACTIONS(349), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16657,59 +16789,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [100] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1536), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__access_elements] = STATE(1543), + [sym_access_element] = STATE(1518), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(100), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16738,59 +16871,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [101] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__access_elements] = STATE(1402), - [sym_access_element] = STATE(1519), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(101), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16819,58 +16952,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [102] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(102), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(353), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16899,58 +17033,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [103] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym_elsif] = STATE(117), [sym_comment] = STATE(103), + [aux_sym_if_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(355), + [anon_sym_DASH_EQ] = ACTIONS(355), + [anon_sym_DASH_GT] = ACTIONS(355), + [anon_sym_TILDE_GT] = ACTIONS(355), + [anon_sym_LT_DASH] = ACTIONS(355), + [anon_sym_LT_TILDE] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(357), + [anon_sym_AT_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_in] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_BANG_TILDE] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_and] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_elsif] = ACTIONS(359), + [anon_sym_else] = ACTIONS(357), + [anon_sym_unless] = ACTIONS(357), + [anon_sym_case] = ACTIONS(357), + [anon_sym_LT_PIPE] = ACTIONS(355), + [anon_sym_LT_LT_PIPE] = ACTIONS(355), + [anon_sym_define] = ACTIONS(357), + [anon_sym_plan] = ACTIONS(357), + [anon_sym_apply] = ACTIONS(357), + [anon_sym_class] = ACTIONS(357), + [anon_sym_node] = ACTIONS(357), + [anon_sym_function] = ACTIONS(357), + [anon_sym_type] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(355), + [anon_sym_private] = ACTIONS(357), + [anon_sym_attr] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_AT_LPAREN] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(357), + [anon_sym_default] = ACTIONS(357), + [anon_sym_undef] = ACTIONS(357), + [anon_sym_include] = ACTIONS(357), + [anon_sym_require] = ACTIONS(357), + [anon_sym_contain] = ACTIONS(357), + [anon_sym_tag] = ACTIONS(357), + [anon_sym_debug] = ACTIONS(357), + [anon_sym_info] = ACTIONS(357), + [anon_sym_notice] = ACTIONS(357), + [anon_sym_warning] = ACTIONS(357), + [anon_sym_err] = ACTIONS(357), + [anon_sym_fail] = ACTIONS(357), + [sym_type] = ACTIONS(355), + [sym_name] = ACTIONS(357), + [sym_number] = ACTIONS(355), + [sym_true] = ACTIONS(357), + [sym_false] = ACTIONS(357), + [sym_qmark] = ACTIONS(355), + }, + [104] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(104), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(360), + [anon_sym_RBRACE] = ACTIONS(362), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -16978,139 +17194,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [104] = { - [sym_lambda] = STATE(157), - [sym__lambda_parameter_list] = STATE(1308), - [sym_comment] = STATE(104), - [ts_builtin_sym_end] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(362), - [anon_sym_EQ] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(362), - [anon_sym_DASH_EQ] = ACTIONS(362), - [anon_sym_DASH_GT] = ACTIONS(362), - [anon_sym_TILDE_GT] = ACTIONS(362), - [anon_sym_LT_DASH] = ACTIONS(362), - [anon_sym_LT_TILDE] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_AT_AT] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_in] = ACTIONS(364), - [anon_sym_EQ_TILDE] = ACTIONS(362), - [anon_sym_BANG_TILDE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_PERCENT] = ACTIONS(362), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_and] = ACTIONS(364), - [anon_sym_or] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(364), - [anon_sym_unless] = ACTIONS(364), - [anon_sym_case] = ACTIONS(364), - [anon_sym_LT_PIPE] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_define] = ACTIONS(364), - [anon_sym_plan] = ACTIONS(364), - [anon_sym_apply] = ACTIONS(364), - [anon_sym_class] = ACTIONS(364), - [anon_sym_node] = ACTIONS(364), - [anon_sym_function] = ACTIONS(364), - [anon_sym_type] = ACTIONS(364), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_private] = ACTIONS(364), - [anon_sym_attr] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [anon_sym_AT_LPAREN] = ACTIONS(362), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_undef] = ACTIONS(364), - [anon_sym_include] = ACTIONS(364), - [anon_sym_require] = ACTIONS(364), - [anon_sym_contain] = ACTIONS(364), - [anon_sym_tag] = ACTIONS(364), - [anon_sym_debug] = ACTIONS(364), - [anon_sym_info] = ACTIONS(364), - [anon_sym_notice] = ACTIONS(364), - [anon_sym_warning] = ACTIONS(364), - [anon_sym_err] = ACTIONS(364), - [anon_sym_fail] = ACTIONS(364), - [sym_type] = ACTIONS(362), - [sym_name] = ACTIONS(364), - [sym_number] = ACTIONS(362), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_qmark] = ACTIONS(362), - }, [105] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(663), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym_access_element] = STATE(1475), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1516), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(105), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(364), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -17139,218 +17276,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(175), }, [106] = { - [sym_lambda] = STATE(155), - [sym__lambda_parameter_list] = STATE(1308), + [sym__assignment] = STATE(1315), + [sym_argument] = STATE(1463), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1368), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(368), - [anon_sym_TILDE_GT] = ACTIONS(368), - [anon_sym_LT_DASH] = ACTIONS(368), - [anon_sym_LT_TILDE] = ACTIONS(368), - [anon_sym_AT] = ACTIONS(370), - [anon_sym_AT_AT] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(368), - [anon_sym_in] = ACTIONS(370), - [anon_sym_EQ_TILDE] = ACTIONS(368), - [anon_sym_BANG_TILDE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(368), - [anon_sym_PERCENT] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_and] = ACTIONS(370), - [anon_sym_or] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(370), - [anon_sym_unless] = ACTIONS(370), - [anon_sym_case] = ACTIONS(370), - [anon_sym_LT_PIPE] = ACTIONS(368), - [anon_sym_LT_LT_PIPE] = ACTIONS(368), - [anon_sym_define] = ACTIONS(370), - [anon_sym_plan] = ACTIONS(370), - [anon_sym_apply] = ACTIONS(370), - [anon_sym_class] = ACTIONS(370), - [anon_sym_node] = ACTIONS(370), - [anon_sym_function] = ACTIONS(370), - [anon_sym_type] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(368), - [anon_sym_private] = ACTIONS(370), - [anon_sym_attr] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_AT_LPAREN] = ACTIONS(368), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(370), - [anon_sym_default] = ACTIONS(370), - [anon_sym_undef] = ACTIONS(370), - [anon_sym_include] = ACTIONS(370), - [anon_sym_require] = ACTIONS(370), - [anon_sym_contain] = ACTIONS(370), - [anon_sym_tag] = ACTIONS(370), - [anon_sym_debug] = ACTIONS(370), - [anon_sym_info] = ACTIONS(370), - [anon_sym_notice] = ACTIONS(370), - [anon_sym_warning] = ACTIONS(370), - [anon_sym_err] = ACTIONS(370), - [anon_sym_fail] = ACTIONS(370), - [sym_type] = ACTIONS(368), - [sym_name] = ACTIONS(370), - [sym_number] = ACTIONS(368), - [sym_true] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [sym_qmark] = ACTIONS(368), - }, - [107] = { - [sym_lambda] = STATE(216), - [sym__lambda_parameter_list] = STATE(1308), - [sym_comment] = STATE(107), - [ts_builtin_sym_end] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [anon_sym_TILDE_GT] = ACTIONS(372), - [anon_sym_LT_DASH] = ACTIONS(372), - [anon_sym_LT_TILDE] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(374), - [anon_sym_AT_AT] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_in] = ACTIONS(374), - [anon_sym_EQ_TILDE] = ACTIONS(372), - [anon_sym_BANG_TILDE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PERCENT] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_and] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(374), - [anon_sym_unless] = ACTIONS(374), - [anon_sym_case] = ACTIONS(374), - [anon_sym_LT_PIPE] = ACTIONS(372), - [anon_sym_LT_LT_PIPE] = ACTIONS(372), - [anon_sym_define] = ACTIONS(374), - [anon_sym_plan] = ACTIONS(374), - [anon_sym_apply] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_node] = ACTIONS(374), - [anon_sym_function] = ACTIONS(374), - [anon_sym_type] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(372), - [anon_sym_private] = ACTIONS(374), - [anon_sym_attr] = ACTIONS(374), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym_AT_LPAREN] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(374), - [anon_sym_default] = ACTIONS(374), - [anon_sym_undef] = ACTIONS(374), - [anon_sym_include] = ACTIONS(374), - [anon_sym_require] = ACTIONS(374), - [anon_sym_contain] = ACTIONS(374), - [anon_sym_tag] = ACTIONS(374), - [anon_sym_debug] = ACTIONS(374), - [anon_sym_info] = ACTIONS(374), - [anon_sym_notice] = ACTIONS(374), - [anon_sym_warning] = ACTIONS(374), - [anon_sym_err] = ACTIONS(374), - [anon_sym_fail] = ACTIONS(374), - [sym_type] = ACTIONS(372), - [sym_name] = ACTIONS(374), - [sym_number] = ACTIONS(372), - [sym_true] = ACTIONS(374), - [sym_false] = ACTIONS(374), - [sym_qmark] = ACTIONS(372), - }, - [108] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(108), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(376), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -17378,59 +17356,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [109] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(109), + [107] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(657), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym_access_element] = STATE(1497), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1524), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(107), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(378), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -17458,219 +17437,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [110] = { - [sym_lambda] = STATE(214), - [sym__lambda_parameter_list] = STATE(1308), - [sym_comment] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_DASH_GT] = ACTIONS(380), - [anon_sym_TILDE_GT] = ACTIONS(380), - [anon_sym_LT_DASH] = ACTIONS(380), - [anon_sym_LT_TILDE] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_AT] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_EQ_TILDE] = ACTIONS(380), - [anon_sym_BANG_TILDE] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_and] = ACTIONS(382), - [anon_sym_or] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(382), - [anon_sym_unless] = ACTIONS(382), - [anon_sym_case] = ACTIONS(382), - [anon_sym_LT_PIPE] = ACTIONS(380), - [anon_sym_LT_LT_PIPE] = ACTIONS(380), - [anon_sym_define] = ACTIONS(382), - [anon_sym_plan] = ACTIONS(382), - [anon_sym_apply] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_node] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(380), - [anon_sym_private] = ACTIONS(382), - [anon_sym_attr] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_AT_LPAREN] = ACTIONS(380), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_undef] = ACTIONS(382), - [anon_sym_include] = ACTIONS(382), - [anon_sym_require] = ACTIONS(382), - [anon_sym_contain] = ACTIONS(382), - [anon_sym_tag] = ACTIONS(382), - [anon_sym_debug] = ACTIONS(382), - [anon_sym_info] = ACTIONS(382), - [anon_sym_notice] = ACTIONS(382), - [anon_sym_warning] = ACTIONS(382), - [anon_sym_err] = ACTIONS(382), - [anon_sym_fail] = ACTIONS(382), - [sym_type] = ACTIONS(380), - [sym_name] = ACTIONS(382), - [sym_number] = ACTIONS(380), - [sym_true] = ACTIONS(382), - [sym_false] = ACTIONS(382), - [sym_qmark] = ACTIONS(380), - }, - [111] = { - [sym_lambda] = STATE(222), - [sym__lambda_parameter_list] = STATE(1308), - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(386), - [anon_sym_PLUS_EQ] = ACTIONS(384), - [anon_sym_DASH_EQ] = ACTIONS(384), - [anon_sym_DASH_GT] = ACTIONS(384), - [anon_sym_TILDE_GT] = ACTIONS(384), - [anon_sym_LT_DASH] = ACTIONS(384), - [anon_sym_LT_TILDE] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(386), - [anon_sym_AT_AT] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_in] = ACTIONS(386), - [anon_sym_EQ_TILDE] = ACTIONS(384), - [anon_sym_BANG_TILDE] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_LT_LT] = ACTIONS(386), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_and] = ACTIONS(386), - [anon_sym_or] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(386), - [anon_sym_unless] = ACTIONS(386), - [anon_sym_case] = ACTIONS(386), - [anon_sym_LT_PIPE] = ACTIONS(384), - [anon_sym_LT_LT_PIPE] = ACTIONS(384), - [anon_sym_define] = ACTIONS(386), - [anon_sym_plan] = ACTIONS(386), - [anon_sym_apply] = ACTIONS(386), - [anon_sym_class] = ACTIONS(386), - [anon_sym_node] = ACTIONS(386), - [anon_sym_function] = ACTIONS(386), - [anon_sym_type] = ACTIONS(386), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_private] = ACTIONS(386), - [anon_sym_attr] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_AT_LPAREN] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(386), - [anon_sym_default] = ACTIONS(386), - [anon_sym_undef] = ACTIONS(386), - [anon_sym_include] = ACTIONS(386), - [anon_sym_require] = ACTIONS(386), - [anon_sym_contain] = ACTIONS(386), - [anon_sym_tag] = ACTIONS(386), - [anon_sym_debug] = ACTIONS(386), - [anon_sym_info] = ACTIONS(386), - [anon_sym_notice] = ACTIONS(386), - [anon_sym_warning] = ACTIONS(386), - [anon_sym_err] = ACTIONS(386), - [anon_sym_fail] = ACTIONS(386), - [sym_type] = ACTIONS(384), - [sym_name] = ACTIONS(386), - [sym_number] = ACTIONS(384), - [sym_true] = ACTIONS(386), - [sym_false] = ACTIONS(386), - [sym_qmark] = ACTIONS(384), - }, - [112] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(112), + [108] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(108), [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(366), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -17698,59 +17518,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [113] = { - [sym__assignment] = STATE(1281), - [sym_argument] = STATE(1515), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1355), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(113), + [109] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_hashpair] = STATE(1492), + [sym__hash_entry] = STATE(1600), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(109), [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(368), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -17778,721 +17599,1752 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, + [110] = { + [sym_lambda] = STATE(182), + [sym__lambda_parameter_list] = STATE(1310), + [sym_comment] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_RBRACE] = ACTIONS(370), + [anon_sym_COMMA] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(370), + [anon_sym_EQ] = ACTIONS(372), + [anon_sym_PLUS_EQ] = ACTIONS(370), + [anon_sym_DASH_EQ] = ACTIONS(370), + [anon_sym_DASH_GT] = ACTIONS(370), + [anon_sym_TILDE_GT] = ACTIONS(370), + [anon_sym_LT_DASH] = ACTIONS(370), + [anon_sym_LT_TILDE] = ACTIONS(370), + [anon_sym_AT] = ACTIONS(372), + [anon_sym_AT_AT] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(372), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_in] = ACTIONS(372), + [anon_sym_EQ_TILDE] = ACTIONS(370), + [anon_sym_BANG_TILDE] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(372), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(372), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_BANG_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(370), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(370), + [anon_sym_and] = ACTIONS(372), + [anon_sym_or] = ACTIONS(372), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(372), + [anon_sym_unless] = ACTIONS(372), + [anon_sym_case] = ACTIONS(372), + [anon_sym_LT_PIPE] = ACTIONS(370), + [anon_sym_LT_LT_PIPE] = ACTIONS(370), + [anon_sym_define] = ACTIONS(372), + [anon_sym_plan] = ACTIONS(372), + [anon_sym_apply] = ACTIONS(372), + [anon_sym_class] = ACTIONS(372), + [anon_sym_node] = ACTIONS(372), + [anon_sym_function] = ACTIONS(372), + [anon_sym_type] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(370), + [anon_sym_private] = ACTIONS(372), + [anon_sym_attr] = ACTIONS(372), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_AT_LPAREN] = ACTIONS(370), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(372), + [anon_sym_default] = ACTIONS(372), + [anon_sym_undef] = ACTIONS(372), + [anon_sym_include] = ACTIONS(372), + [anon_sym_require] = ACTIONS(372), + [anon_sym_contain] = ACTIONS(372), + [anon_sym_tag] = ACTIONS(372), + [anon_sym_debug] = ACTIONS(372), + [anon_sym_info] = ACTIONS(372), + [anon_sym_notice] = ACTIONS(372), + [anon_sym_warning] = ACTIONS(372), + [anon_sym_err] = ACTIONS(372), + [anon_sym_fail] = ACTIONS(372), + [sym_type] = ACTIONS(370), + [sym_name] = ACTIONS(372), + [sym_number] = ACTIONS(370), + [sym_true] = ACTIONS(372), + [sym_false] = ACTIONS(372), + [sym_qmark] = ACTIONS(370), + }, + [111] = { + [sym_lambda] = STATE(209), + [sym__lambda_parameter_list] = STATE(1310), + [sym_comment] = STATE(111), + [ts_builtin_sym_end] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_EQ] = ACTIONS(378), + [anon_sym_PLUS_EQ] = ACTIONS(376), + [anon_sym_DASH_EQ] = ACTIONS(376), + [anon_sym_DASH_GT] = ACTIONS(376), + [anon_sym_TILDE_GT] = ACTIONS(376), + [anon_sym_LT_DASH] = ACTIONS(376), + [anon_sym_LT_TILDE] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(378), + [anon_sym_AT_AT] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(378), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_in] = ACTIONS(378), + [anon_sym_EQ_TILDE] = ACTIONS(376), + [anon_sym_BANG_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(378), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(376), + [anon_sym_LT_LT] = ACTIONS(378), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_GT] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(376), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_LT_EQ] = ACTIONS(376), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(378), + [anon_sym_unless] = ACTIONS(378), + [anon_sym_case] = ACTIONS(378), + [anon_sym_LT_PIPE] = ACTIONS(376), + [anon_sym_LT_LT_PIPE] = ACTIONS(376), + [anon_sym_define] = ACTIONS(378), + [anon_sym_plan] = ACTIONS(378), + [anon_sym_apply] = ACTIONS(378), + [anon_sym_class] = ACTIONS(378), + [anon_sym_node] = ACTIONS(378), + [anon_sym_function] = ACTIONS(378), + [anon_sym_type] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_private] = ACTIONS(378), + [anon_sym_attr] = ACTIONS(378), + [anon_sym_SQUOTE] = ACTIONS(376), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_AT_LPAREN] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(378), + [anon_sym_default] = ACTIONS(378), + [anon_sym_undef] = ACTIONS(378), + [anon_sym_include] = ACTIONS(378), + [anon_sym_require] = ACTIONS(378), + [anon_sym_contain] = ACTIONS(378), + [anon_sym_tag] = ACTIONS(378), + [anon_sym_debug] = ACTIONS(378), + [anon_sym_info] = ACTIONS(378), + [anon_sym_notice] = ACTIONS(378), + [anon_sym_warning] = ACTIONS(378), + [anon_sym_err] = ACTIONS(378), + [anon_sym_fail] = ACTIONS(378), + [sym_type] = ACTIONS(376), + [sym_name] = ACTIONS(378), + [sym_number] = ACTIONS(376), + [sym_true] = ACTIONS(378), + [sym_false] = ACTIONS(378), + [sym_qmark] = ACTIONS(376), + }, + [112] = { + [sym_lambda] = STATE(201), + [sym__lambda_parameter_list] = STATE(1310), + [sym_comment] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_DASH_GT] = ACTIONS(380), + [anon_sym_TILDE_GT] = ACTIONS(380), + [anon_sym_LT_DASH] = ACTIONS(380), + [anon_sym_LT_TILDE] = ACTIONS(380), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_AT_AT] = ACTIONS(380), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_in] = ACTIONS(382), + [anon_sym_EQ_TILDE] = ACTIONS(380), + [anon_sym_BANG_TILDE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_and] = ACTIONS(382), + [anon_sym_or] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(382), + [anon_sym_unless] = ACTIONS(382), + [anon_sym_case] = ACTIONS(382), + [anon_sym_LT_PIPE] = ACTIONS(380), + [anon_sym_LT_LT_PIPE] = ACTIONS(380), + [anon_sym_define] = ACTIONS(382), + [anon_sym_plan] = ACTIONS(382), + [anon_sym_apply] = ACTIONS(382), + [anon_sym_class] = ACTIONS(382), + [anon_sym_node] = ACTIONS(382), + [anon_sym_function] = ACTIONS(382), + [anon_sym_type] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(380), + [anon_sym_private] = ACTIONS(382), + [anon_sym_attr] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_AT_LPAREN] = ACTIONS(380), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(382), + [anon_sym_default] = ACTIONS(382), + [anon_sym_undef] = ACTIONS(382), + [anon_sym_include] = ACTIONS(382), + [anon_sym_require] = ACTIONS(382), + [anon_sym_contain] = ACTIONS(382), + [anon_sym_tag] = ACTIONS(382), + [anon_sym_debug] = ACTIONS(382), + [anon_sym_info] = ACTIONS(382), + [anon_sym_notice] = ACTIONS(382), + [anon_sym_warning] = ACTIONS(382), + [anon_sym_err] = ACTIONS(382), + [anon_sym_fail] = ACTIONS(382), + [sym_type] = ACTIONS(380), + [sym_name] = ACTIONS(382), + [sym_number] = ACTIONS(380), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_qmark] = ACTIONS(380), + }, + [113] = { + [sym_lambda] = STATE(203), + [sym__lambda_parameter_list] = STATE(1310), + [sym_comment] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(384), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(384), + [anon_sym_TILDE_GT] = ACTIONS(384), + [anon_sym_LT_DASH] = ACTIONS(384), + [anon_sym_LT_TILDE] = ACTIONS(384), + [anon_sym_AT] = ACTIONS(386), + [anon_sym_AT_AT] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_in] = ACTIONS(386), + [anon_sym_EQ_TILDE] = ACTIONS(384), + [anon_sym_BANG_TILDE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(384), + [anon_sym_PERCENT] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_and] = ACTIONS(386), + [anon_sym_or] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(386), + [anon_sym_unless] = ACTIONS(386), + [anon_sym_case] = ACTIONS(386), + [anon_sym_LT_PIPE] = ACTIONS(384), + [anon_sym_LT_LT_PIPE] = ACTIONS(384), + [anon_sym_define] = ACTIONS(386), + [anon_sym_plan] = ACTIONS(386), + [anon_sym_apply] = ACTIONS(386), + [anon_sym_class] = ACTIONS(386), + [anon_sym_node] = ACTIONS(386), + [anon_sym_function] = ACTIONS(386), + [anon_sym_type] = ACTIONS(386), + [anon_sym_DOLLAR] = ACTIONS(384), + [anon_sym_private] = ACTIONS(386), + [anon_sym_attr] = ACTIONS(386), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(384), + [anon_sym_AT_LPAREN] = ACTIONS(384), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(386), + [anon_sym_default] = ACTIONS(386), + [anon_sym_undef] = ACTIONS(386), + [anon_sym_include] = ACTIONS(386), + [anon_sym_require] = ACTIONS(386), + [anon_sym_contain] = ACTIONS(386), + [anon_sym_tag] = ACTIONS(386), + [anon_sym_debug] = ACTIONS(386), + [anon_sym_info] = ACTIONS(386), + [anon_sym_notice] = ACTIONS(386), + [anon_sym_warning] = ACTIONS(386), + [anon_sym_err] = ACTIONS(386), + [anon_sym_fail] = ACTIONS(386), + [sym_type] = ACTIONS(384), + [sym_name] = ACTIONS(386), + [sym_number] = ACTIONS(384), + [sym_true] = ACTIONS(386), + [sym_false] = ACTIONS(386), + [sym_qmark] = ACTIONS(384), + }, [114] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_hashpair] = STATE(1447), - [sym__hash_entry] = STATE(1623), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), + [sym_lambda] = STATE(191), + [sym__lambda_parameter_list] = STATE(1310), [sym_comment] = STATE(114), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(143), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(147), - [anon_sym_type] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym__] = ACTIONS(163), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), + [ts_builtin_sym_end] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_DASH_GT] = ACTIONS(388), + [anon_sym_TILDE_GT] = ACTIONS(388), + [anon_sym_LT_DASH] = ACTIONS(388), + [anon_sym_LT_TILDE] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(390), + [anon_sym_AT_AT] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_in] = ACTIONS(390), + [anon_sym_EQ_TILDE] = ACTIONS(388), + [anon_sym_BANG_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_and] = ACTIONS(390), + [anon_sym_or] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(390), + [anon_sym_unless] = ACTIONS(390), + [anon_sym_case] = ACTIONS(390), + [anon_sym_LT_PIPE] = ACTIONS(388), + [anon_sym_LT_LT_PIPE] = ACTIONS(388), + [anon_sym_define] = ACTIONS(390), + [anon_sym_plan] = ACTIONS(390), + [anon_sym_apply] = ACTIONS(390), + [anon_sym_class] = ACTIONS(390), + [anon_sym_node] = ACTIONS(390), + [anon_sym_function] = ACTIONS(390), + [anon_sym_type] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_private] = ACTIONS(390), + [anon_sym_attr] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_AT_LPAREN] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_undef] = ACTIONS(390), + [anon_sym_include] = ACTIONS(390), + [anon_sym_require] = ACTIONS(390), + [anon_sym_contain] = ACTIONS(390), + [anon_sym_tag] = ACTIONS(390), + [anon_sym_debug] = ACTIONS(390), + [anon_sym_info] = ACTIONS(390), + [anon_sym_notice] = ACTIONS(390), + [anon_sym_warning] = ACTIONS(390), + [anon_sym_err] = ACTIONS(390), + [anon_sym_fail] = ACTIONS(390), + [sym_type] = ACTIONS(388), + [sym_name] = ACTIONS(390), + [sym_number] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_qmark] = ACTIONS(388), }, [115] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), [sym_comment] = STATE(115), [ts_builtin_sym_end] = ACTIONS(392), [anon_sym_SEMI] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_RBRACE] = ACTIONS(392), [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), [anon_sym_PLUS_EQ] = ACTIONS(392), [anon_sym_DASH_EQ] = ACTIONS(392), [anon_sym_DASH_GT] = ACTIONS(392), [anon_sym_TILDE_GT] = ACTIONS(392), [anon_sym_LT_DASH] = ACTIONS(392), [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(394), [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_in] = ACTIONS(394), + [anon_sym_EQ_TILDE] = ACTIONS(392), + [anon_sym_BANG_TILDE] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_and] = ACTIONS(394), + [anon_sym_or] = ACTIONS(394), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), + [anon_sym_if] = ACTIONS(394), + [anon_sym_elsif] = ACTIONS(394), + [anon_sym_else] = ACTIONS(394), + [anon_sym_unless] = ACTIONS(394), + [anon_sym_case] = ACTIONS(394), [anon_sym_LT_PIPE] = ACTIONS(392), [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), + [anon_sym_define] = ACTIONS(394), + [anon_sym_plan] = ACTIONS(394), + [anon_sym_apply] = ACTIONS(394), + [anon_sym_class] = ACTIONS(394), + [anon_sym_node] = ACTIONS(394), + [anon_sym_function] = ACTIONS(394), + [anon_sym_type] = ACTIONS(394), [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), + [anon_sym_private] = ACTIONS(394), + [anon_sym_attr] = ACTIONS(394), [anon_sym_SQUOTE] = ACTIONS(392), [anon_sym_DQUOTE] = ACTIONS(392), [anon_sym_AT_LPAREN] = ACTIONS(392), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), + [anon_sym_LBRACK2] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_undef] = ACTIONS(394), + [anon_sym_include] = ACTIONS(394), + [anon_sym_require] = ACTIONS(394), + [anon_sym_contain] = ACTIONS(394), + [anon_sym_tag] = ACTIONS(394), + [anon_sym_debug] = ACTIONS(394), + [anon_sym_info] = ACTIONS(394), + [anon_sym_notice] = ACTIONS(394), + [anon_sym_warning] = ACTIONS(394), + [anon_sym_err] = ACTIONS(394), + [anon_sym_fail] = ACTIONS(394), [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), + [sym_name] = ACTIONS(394), [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(430), + [sym_true] = ACTIONS(394), + [sym_false] = ACTIONS(394), + [sym_qmark] = ACTIONS(392), }, [116] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(432), - [anon_sym_TILDE_GT] = ACTIONS(432), - [anon_sym_LT_DASH] = ACTIONS(432), - [anon_sym_LT_TILDE] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [117] = { [sym_comment] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_DASH_GT] = ACTIONS(436), - [anon_sym_TILDE_GT] = ACTIONS(436), - [anon_sym_LT_DASH] = ACTIONS(436), - [anon_sym_LT_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_elsif] = ACTIONS(438), - [anon_sym_else] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), + [ts_builtin_sym_end] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(410), + [anon_sym_PLUS_EQ] = ACTIONS(408), + [anon_sym_DASH_EQ] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(408), + [anon_sym_TILDE_GT] = ACTIONS(408), + [anon_sym_LT_DASH] = ACTIONS(408), + [anon_sym_LT_TILDE] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(410), + [anon_sym_AT_AT] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_in] = ACTIONS(410), + [anon_sym_EQ_TILDE] = ACTIONS(408), + [anon_sym_BANG_TILDE] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_LT_LT] = ACTIONS(410), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_BANG_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(408), + [anon_sym_and] = ACTIONS(410), + [anon_sym_or] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_if] = ACTIONS(410), + [anon_sym_elsif] = ACTIONS(410), + [anon_sym_else] = ACTIONS(410), + [anon_sym_unless] = ACTIONS(410), + [anon_sym_case] = ACTIONS(410), + [anon_sym_LT_PIPE] = ACTIONS(408), + [anon_sym_LT_LT_PIPE] = ACTIONS(408), + [anon_sym_define] = ACTIONS(410), + [anon_sym_plan] = ACTIONS(410), + [anon_sym_apply] = ACTIONS(410), + [anon_sym_class] = ACTIONS(410), + [anon_sym_node] = ACTIONS(410), + [anon_sym_function] = ACTIONS(410), + [anon_sym_type] = ACTIONS(410), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_private] = ACTIONS(410), + [anon_sym_attr] = ACTIONS(410), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(408), + [anon_sym_AT_LPAREN] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(410), + [anon_sym_default] = ACTIONS(410), + [anon_sym_undef] = ACTIONS(410), + [anon_sym_include] = ACTIONS(410), + [anon_sym_require] = ACTIONS(410), + [anon_sym_contain] = ACTIONS(410), + [anon_sym_tag] = ACTIONS(410), + [anon_sym_debug] = ACTIONS(410), + [anon_sym_info] = ACTIONS(410), + [anon_sym_notice] = ACTIONS(410), + [anon_sym_warning] = ACTIONS(410), + [anon_sym_err] = ACTIONS(410), + [anon_sym_fail] = ACTIONS(410), + [sym_type] = ACTIONS(408), + [sym_name] = ACTIONS(410), + [sym_number] = ACTIONS(408), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_qmark] = ACTIONS(408), }, [118] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(440), - [anon_sym_DASH_EQ] = ACTIONS(440), - [anon_sym_DASH_GT] = ACTIONS(440), - [anon_sym_TILDE_GT] = ACTIONS(440), - [anon_sym_LT_DASH] = ACTIONS(440), - [anon_sym_LT_TILDE] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_elsif] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [119] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_and] = ACTIONS(444), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(430), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(400), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [120] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), [anon_sym_in] = ACTIONS(402), [anon_sym_EQ_TILDE] = ACTIONS(404), [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [121] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(412), [anon_sym_in] = ACTIONS(402), [anon_sym_EQ_TILDE] = ACTIONS(404), [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [122] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), [anon_sym_in] = ACTIONS(402), [anon_sym_EQ_TILDE] = ACTIONS(404), [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [123] = { - [sym_else] = STATE(168), + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [124] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(124), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(438), + }, + [125] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(125), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [126] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_and] = ACTIONS(440), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(438), + }, + [127] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [128] = { + [sym_comment] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_DASH_GT] = ACTIONS(442), + [anon_sym_TILDE_GT] = ACTIONS(442), + [anon_sym_LT_DASH] = ACTIONS(442), + [anon_sym_LT_TILDE] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_elsif] = ACTIONS(444), + [anon_sym_else] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), + }, + [129] = { + [sym__assignment] = STATE(1257), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__hash_entry] = STATE(1305), + [sym_collection_entry_keyword] = STATE(1253), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(129), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(143), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_type] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym__] = ACTIONS(163), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), + }, + [130] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [131] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(131), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [132] = { + [sym_else] = STATE(156), + [sym_comment] = STATE(132), [ts_builtin_sym_end] = ACTIONS(446), [anon_sym_SEMI] = ACTIONS(446), [anon_sym_LBRACE] = ACTIONS(446), @@ -18530,7 +19382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(446), [anon_sym_DOT] = ACTIONS(446), [anon_sym_if] = ACTIONS(448), - [anon_sym_else] = ACTIONS(295), + [anon_sym_else] = ACTIONS(309), [anon_sym_unless] = ACTIONS(448), [anon_sym_case] = ACTIONS(448), [anon_sym_LT_PIPE] = ACTIONS(446), @@ -18569,1193 +19421,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(448), [sym_qmark] = ACTIONS(446), }, - [124] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(432), - [anon_sym_TILDE_GT] = ACTIONS(432), - [anon_sym_LT_DASH] = ACTIONS(432), - [anon_sym_LT_TILDE] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [133] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(133), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_DASH_GT] = ACTIONS(450), + [anon_sym_TILDE_GT] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(450), + [anon_sym_LT_TILDE] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), }, - [125] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), + [134] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(134), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [135] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(135), + [ts_builtin_sym_end] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_DASH_GT] = ACTIONS(454), + [anon_sym_TILDE_GT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(454), + [anon_sym_LT_TILDE] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(456), + [anon_sym_AT_AT] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), [anon_sym_in] = ACTIONS(402), [anon_sym_EQ_TILDE] = ACTIONS(404), [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [126] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [127] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [128] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(392), - [anon_sym_BANG_TILDE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [129] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_DASH_GT] = ACTIONS(450), - [anon_sym_TILDE_GT] = ACTIONS(450), - [anon_sym_LT_DASH] = ACTIONS(450), - [anon_sym_LT_TILDE] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_AT_AT] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_and] = ACTIONS(444), - [anon_sym_or] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_if] = ACTIONS(452), - [anon_sym_unless] = ACTIONS(452), - [anon_sym_case] = ACTIONS(452), - [anon_sym_LT_PIPE] = ACTIONS(460), - [anon_sym_LT_LT_PIPE] = ACTIONS(462), - [anon_sym_define] = ACTIONS(452), - [anon_sym_plan] = ACTIONS(452), - [anon_sym_apply] = ACTIONS(452), - [anon_sym_class] = ACTIONS(452), - [anon_sym_node] = ACTIONS(452), - [anon_sym_function] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(450), - [anon_sym_private] = ACTIONS(452), - [anon_sym_attr] = ACTIONS(452), - [anon_sym_SQUOTE] = ACTIONS(450), - [anon_sym_DQUOTE] = ACTIONS(450), - [anon_sym_AT_LPAREN] = ACTIONS(450), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_undef] = ACTIONS(452), - [anon_sym_include] = ACTIONS(452), - [anon_sym_require] = ACTIONS(452), - [anon_sym_contain] = ACTIONS(452), - [anon_sym_tag] = ACTIONS(452), - [anon_sym_debug] = ACTIONS(452), - [anon_sym_info] = ACTIONS(452), - [anon_sym_notice] = ACTIONS(452), - [anon_sym_warning] = ACTIONS(452), - [anon_sym_err] = ACTIONS(452), - [anon_sym_fail] = ACTIONS(452), - [sym_type] = ACTIONS(450), - [sym_name] = ACTIONS(452), - [sym_number] = ACTIONS(450), - [sym_true] = ACTIONS(452), - [sym_false] = ACTIONS(452), - [sym_qmark] = ACTIONS(430), - }, - [130] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [131] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(131), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(392), - [anon_sym_BANG_TILDE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [132] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(396), - [anon_sym_EQ_TILDE] = ACTIONS(392), - [anon_sym_BANG_TILDE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [133] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [134] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [135] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(432), - [anon_sym_TILDE_GT] = ACTIONS(432), - [anon_sym_LT_DASH] = ACTIONS(432), - [anon_sym_LT_TILDE] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(430), [anon_sym_GT_EQ] = ACTIONS(432), [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_and] = ACTIONS(440), + [anon_sym_or] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(462), + [anon_sym_if] = ACTIONS(456), + [anon_sym_unless] = ACTIONS(456), + [anon_sym_case] = ACTIONS(456), + [anon_sym_LT_PIPE] = ACTIONS(464), + [anon_sym_LT_LT_PIPE] = ACTIONS(466), + [anon_sym_define] = ACTIONS(456), + [anon_sym_plan] = ACTIONS(456), + [anon_sym_apply] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_node] = ACTIONS(456), + [anon_sym_function] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_DOLLAR] = ACTIONS(454), + [anon_sym_private] = ACTIONS(456), + [anon_sym_attr] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(454), + [anon_sym_DQUOTE] = ACTIONS(454), + [anon_sym_AT_LPAREN] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_undef] = ACTIONS(456), + [anon_sym_include] = ACTIONS(456), + [anon_sym_require] = ACTIONS(456), + [anon_sym_contain] = ACTIONS(456), + [anon_sym_tag] = ACTIONS(456), + [anon_sym_debug] = ACTIONS(456), + [anon_sym_info] = ACTIONS(456), + [anon_sym_notice] = ACTIONS(456), + [anon_sym_warning] = ACTIONS(456), + [anon_sym_err] = ACTIONS(456), + [anon_sym_fail] = ACTIONS(456), + [sym_type] = ACTIONS(454), + [sym_name] = ACTIONS(456), + [sym_number] = ACTIONS(454), + [sym_true] = ACTIONS(456), + [sym_false] = ACTIONS(456), + [sym_qmark] = ACTIONS(438), }, [136] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), [sym_comment] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [137] = { - [sym_comment] = STATE(137), - [ts_builtin_sym_end] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_LBRACE] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(464), - [anon_sym_DASH_EQ] = ACTIONS(464), - [anon_sym_DASH_GT] = ACTIONS(464), - [anon_sym_TILDE_GT] = ACTIONS(464), - [anon_sym_LT_DASH] = ACTIONS(464), - [anon_sym_LT_TILDE] = ACTIONS(464), - [anon_sym_AT] = ACTIONS(466), - [anon_sym_AT_AT] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_in] = ACTIONS(466), - [anon_sym_EQ_TILDE] = ACTIONS(464), - [anon_sym_BANG_TILDE] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(464), - [anon_sym_BANG_EQ] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(464), - [anon_sym_and] = ACTIONS(466), - [anon_sym_or] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_if] = ACTIONS(466), - [anon_sym_elsif] = ACTIONS(466), - [anon_sym_else] = ACTIONS(466), - [anon_sym_unless] = ACTIONS(466), - [anon_sym_case] = ACTIONS(466), - [anon_sym_LT_PIPE] = ACTIONS(464), - [anon_sym_LT_LT_PIPE] = ACTIONS(464), - [anon_sym_define] = ACTIONS(466), - [anon_sym_plan] = ACTIONS(466), - [anon_sym_apply] = ACTIONS(466), - [anon_sym_class] = ACTIONS(466), - [anon_sym_node] = ACTIONS(466), - [anon_sym_function] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(464), - [anon_sym_private] = ACTIONS(466), - [anon_sym_attr] = ACTIONS(466), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_AT_LPAREN] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(466), - [anon_sym_default] = ACTIONS(466), - [anon_sym_undef] = ACTIONS(466), - [anon_sym_include] = ACTIONS(466), - [anon_sym_require] = ACTIONS(466), - [anon_sym_contain] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_debug] = ACTIONS(466), - [anon_sym_info] = ACTIONS(466), - [anon_sym_notice] = ACTIONS(466), - [anon_sym_warning] = ACTIONS(466), - [anon_sym_err] = ACTIONS(466), - [anon_sym_fail] = ACTIONS(466), - [sym_type] = ACTIONS(464), - [sym_name] = ACTIONS(466), - [sym_number] = ACTIONS(464), - [sym_true] = ACTIONS(466), - [sym_false] = ACTIONS(466), - [sym_qmark] = ACTIONS(464), - }, - [138] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(138), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, - [139] = { - [sym_comment] = STATE(139), [ts_builtin_sym_end] = ACTIONS(468), [anon_sym_SEMI] = ACTIONS(468), [anon_sym_LBRACE] = ACTIONS(468), @@ -19833,683 +19737,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(470), [sym_qmark] = ACTIONS(468), }, - [140] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(140), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), + [137] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(396), [anon_sym_in] = ACTIONS(402), [anon_sym_EQ_TILDE] = ACTIONS(404), [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(418), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, - [141] = { - [sym_selector] = STATE(221), - [sym_collect_query] = STATE(223), - [sym_comment] = STATE(141), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_DASH_GT] = ACTIONS(392), - [anon_sym_TILDE_GT] = ACTIONS(392), - [anon_sym_LT_DASH] = ACTIONS(392), - [anon_sym_LT_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_EQ_TILDE] = ACTIONS(404), - [anon_sym_BANG_TILDE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), + [138] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_DASH_GT] = ACTIONS(450), + [anon_sym_TILDE_GT] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(450), + [anon_sym_LT_TILDE] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), + }, + [139] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [140] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [141] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), + [sym_comment] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_DASH_GT] = ACTIONS(450), + [anon_sym_TILDE_GT] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(450), + [anon_sym_LT_TILDE] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), }, [142] = { + [sym_selector] = STATE(190), + [sym_collect_query] = STATE(188), [sym_comment] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_DASH_GT] = ACTIONS(436), - [anon_sym_TILDE_GT] = ACTIONS(436), - [anon_sym_LT_DASH] = ACTIONS(436), - [anon_sym_LT_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_else] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_TILDE_GT] = ACTIONS(396), + [anon_sym_LT_DASH] = ACTIONS(396), + [anon_sym_LT_TILDE] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_in] = ACTIONS(402), + [anon_sym_EQ_TILDE] = ACTIONS(404), + [anon_sym_BANG_TILDE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [143] = { [sym_comment] = STATE(143), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(440), - [anon_sym_DASH_EQ] = ACTIONS(440), - [anon_sym_DASH_GT] = ACTIONS(440), - [anon_sym_TILDE_GT] = ACTIONS(440), - [anon_sym_LT_DASH] = ACTIONS(440), - [anon_sym_LT_TILDE] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), - }, - [144] = { - [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(472), - [anon_sym_DASH_EQ] = ACTIONS(472), - [anon_sym_DASH_GT] = ACTIONS(472), - [anon_sym_TILDE_GT] = ACTIONS(472), - [anon_sym_LT_DASH] = ACTIONS(472), - [anon_sym_LT_TILDE] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_AT_AT] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), - [anon_sym_EQ_TILDE] = ACTIONS(472), - [anon_sym_BANG_TILDE] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_and] = ACTIONS(474), - [anon_sym_or] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_unless] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), - [anon_sym_LT_PIPE] = ACTIONS(472), - [anon_sym_LT_LT_PIPE] = ACTIONS(472), - [anon_sym_define] = ACTIONS(474), - [anon_sym_plan] = ACTIONS(474), - [anon_sym_apply] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_node] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_private] = ACTIONS(474), - [anon_sym_attr] = ACTIONS(474), - [anon_sym_SQUOTE] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [anon_sym_AT_LPAREN] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_undef] = ACTIONS(474), - [anon_sym_include] = ACTIONS(474), - [anon_sym_require] = ACTIONS(474), - [anon_sym_contain] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_debug] = ACTIONS(474), - [anon_sym_info] = ACTIONS(474), - [anon_sym_notice] = ACTIONS(474), - [anon_sym_warning] = ACTIONS(474), - [anon_sym_err] = ACTIONS(474), - [anon_sym_fail] = ACTIONS(474), - [sym_type] = ACTIONS(472), - [sym_name] = ACTIONS(474), - [sym_number] = ACTIONS(472), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), - [sym_qmark] = ACTIONS(472), - }, - [145] = { - [sym_comment] = STATE(145), [ts_builtin_sym_end] = ACTIONS(472), [anon_sym_SEMI] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), [anon_sym_PLUS_EQ] = ACTIONS(472), [anon_sym_DASH_EQ] = ACTIONS(472), [anon_sym_DASH_GT] = ACTIONS(472), [anon_sym_TILDE_GT] = ACTIONS(472), [anon_sym_LT_DASH] = ACTIONS(472), [anon_sym_LT_TILDE] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(474), + [anon_sym_AT] = ACTIONS(476), [anon_sym_AT_AT] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), [anon_sym_STAR] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), + [anon_sym_in] = ACTIONS(476), [anon_sym_EQ_TILDE] = ACTIONS(472), [anon_sym_BANG_TILDE] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), [anon_sym_SLASH] = ACTIONS(472), [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), [anon_sym_GT_GT] = ACTIONS(472), [anon_sym_BANG_EQ] = ACTIONS(472), [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(476), [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(476), [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_and] = ACTIONS(474), - [anon_sym_or] = ACTIONS(474), + [anon_sym_and] = ACTIONS(476), + [anon_sym_or] = ACTIONS(476), [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(472), [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_unless] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_unless] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), [anon_sym_LT_PIPE] = ACTIONS(472), [anon_sym_LT_LT_PIPE] = ACTIONS(472), - [anon_sym_define] = ACTIONS(474), - [anon_sym_plan] = ACTIONS(474), - [anon_sym_apply] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_node] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), + [anon_sym_define] = ACTIONS(476), + [anon_sym_plan] = ACTIONS(476), + [anon_sym_apply] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_node] = ACTIONS(476), + [anon_sym_function] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_private] = ACTIONS(474), - [anon_sym_attr] = ACTIONS(474), + [anon_sym_private] = ACTIONS(476), + [anon_sym_attr] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(472), [anon_sym_DQUOTE] = ACTIONS(472), [anon_sym_AT_LPAREN] = ACTIONS(472), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_undef] = ACTIONS(474), - [anon_sym_include] = ACTIONS(474), - [anon_sym_require] = ACTIONS(474), - [anon_sym_contain] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_debug] = ACTIONS(474), - [anon_sym_info] = ACTIONS(474), - [anon_sym_notice] = ACTIONS(474), - [anon_sym_warning] = ACTIONS(474), - [anon_sym_err] = ACTIONS(474), - [anon_sym_fail] = ACTIONS(474), + [anon_sym_LBRACK2] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_undef] = ACTIONS(476), + [anon_sym_include] = ACTIONS(476), + [anon_sym_require] = ACTIONS(476), + [anon_sym_contain] = ACTIONS(476), + [anon_sym_tag] = ACTIONS(476), + [anon_sym_debug] = ACTIONS(476), + [anon_sym_info] = ACTIONS(476), + [anon_sym_notice] = ACTIONS(476), + [anon_sym_warning] = ACTIONS(476), + [anon_sym_err] = ACTIONS(476), + [anon_sym_fail] = ACTIONS(476), [sym_type] = ACTIONS(472), - [sym_name] = ACTIONS(474), + [sym_name] = ACTIONS(476), [sym_number] = ACTIONS(472), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), [sym_qmark] = ACTIONS(472), }, - [146] = { - [sym_comment] = STATE(146), - [ts_builtin_sym_end] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(476), - [anon_sym_DASH_EQ] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(476), - [anon_sym_TILDE_GT] = ACTIONS(476), - [anon_sym_LT_DASH] = ACTIONS(476), - [anon_sym_LT_TILDE] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_AT_AT] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_in] = ACTIONS(478), - [anon_sym_EQ_TILDE] = ACTIONS(476), - [anon_sym_BANG_TILDE] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_and] = ACTIONS(478), - [anon_sym_or] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_if] = ACTIONS(478), - [anon_sym_unless] = ACTIONS(478), - [anon_sym_case] = ACTIONS(478), - [anon_sym_LT_PIPE] = ACTIONS(476), - [anon_sym_LT_LT_PIPE] = ACTIONS(476), - [anon_sym_define] = ACTIONS(478), - [anon_sym_plan] = ACTIONS(478), - [anon_sym_apply] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_node] = ACTIONS(478), - [anon_sym_function] = ACTIONS(478), - [anon_sym_type] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_private] = ACTIONS(478), - [anon_sym_attr] = ACTIONS(478), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [anon_sym_AT_LPAREN] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_undef] = ACTIONS(478), - [anon_sym_include] = ACTIONS(478), - [anon_sym_require] = ACTIONS(478), - [anon_sym_contain] = ACTIONS(478), - [anon_sym_tag] = ACTIONS(478), - [anon_sym_debug] = ACTIONS(478), - [anon_sym_info] = ACTIONS(478), - [anon_sym_notice] = ACTIONS(478), - [anon_sym_warning] = ACTIONS(478), - [anon_sym_err] = ACTIONS(478), - [anon_sym_fail] = ACTIONS(478), - [sym_type] = ACTIONS(476), - [sym_name] = ACTIONS(478), - [sym_number] = ACTIONS(476), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_qmark] = ACTIONS(476), - }, - [147] = { - [sym_comment] = STATE(147), - [ts_builtin_sym_end] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_DASH_GT] = ACTIONS(480), - [anon_sym_TILDE_GT] = ACTIONS(480), - [anon_sym_LT_DASH] = ACTIONS(480), - [anon_sym_LT_TILDE] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(482), - [anon_sym_AT_AT] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_in] = ACTIONS(482), - [anon_sym_EQ_TILDE] = ACTIONS(480), - [anon_sym_BANG_TILDE] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_and] = ACTIONS(482), - [anon_sym_or] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_if] = ACTIONS(482), - [anon_sym_unless] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_LT_PIPE] = ACTIONS(480), - [anon_sym_LT_LT_PIPE] = ACTIONS(480), - [anon_sym_define] = ACTIONS(482), - [anon_sym_plan] = ACTIONS(482), - [anon_sym_apply] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_node] = ACTIONS(482), - [anon_sym_function] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_private] = ACTIONS(482), - [anon_sym_attr] = ACTIONS(482), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(480), - [anon_sym_AT_LPAREN] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(482), - [anon_sym_default] = ACTIONS(482), - [anon_sym_undef] = ACTIONS(482), - [anon_sym_include] = ACTIONS(482), - [anon_sym_require] = ACTIONS(482), - [anon_sym_contain] = ACTIONS(482), - [anon_sym_tag] = ACTIONS(482), - [anon_sym_debug] = ACTIONS(482), - [anon_sym_info] = ACTIONS(482), - [anon_sym_notice] = ACTIONS(482), - [anon_sym_warning] = ACTIONS(482), - [anon_sym_err] = ACTIONS(482), - [anon_sym_fail] = ACTIONS(482), - [sym_type] = ACTIONS(480), - [sym_name] = ACTIONS(482), - [sym_number] = ACTIONS(480), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_qmark] = ACTIONS(480), - }, - [148] = { - [sym__assignment] = STATE(1227), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__hash_entry] = STATE(1293), - [sym_collection_entry_keyword] = STATE(1232), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(148), + [144] = { + [sym__statement_function_args] = STATE(1599), + [sym__assignment] = STATE(1634), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(731), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(144), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(478), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -20518,8 +20349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(147), - [anon_sym_type] = ACTIONS(149), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -20528,7 +20359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_LPAREN] = ACTIONS(159), [anon_sym_POUND] = ACTIONS(3), [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym__] = ACTIONS(163), [anon_sym_default] = ACTIONS(165), [anon_sym_undef] = ACTIONS(167), [sym_type] = ACTIONS(169), @@ -20537,12 +20367,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [149] = { - [sym_hash] = STATE(188), - [sym_comment] = STATE(149), + [145] = { + [sym_comment] = STATE(145), [ts_builtin_sym_end] = ACTIONS(484), [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(484), [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_COMMA] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(484), @@ -20574,8 +20403,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(484), [anon_sym_and] = ACTIONS(486), [anon_sym_or] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_DOT] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), [anon_sym_if] = ACTIONS(486), [anon_sym_unless] = ACTIONS(486), [anon_sym_case] = ACTIONS(486), @@ -20615,50 +20445,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(486), [sym_qmark] = ACTIONS(484), }, - [150] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(490), + [146] = { + [sym_comment] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_DASH_GT] = ACTIONS(488), + [anon_sym_TILDE_GT] = ACTIONS(488), + [anon_sym_LT_DASH] = ACTIONS(488), + [anon_sym_LT_TILDE] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(490), + [anon_sym_AT_AT] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_in] = ACTIONS(490), + [anon_sym_EQ_TILDE] = ACTIONS(488), + [anon_sym_BANG_TILDE] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_if] = ACTIONS(490), + [anon_sym_unless] = ACTIONS(490), + [anon_sym_case] = ACTIONS(490), + [anon_sym_LT_PIPE] = ACTIONS(488), + [anon_sym_LT_LT_PIPE] = ACTIONS(488), + [anon_sym_define] = ACTIONS(490), + [anon_sym_plan] = ACTIONS(490), + [anon_sym_apply] = ACTIONS(490), + [anon_sym_class] = ACTIONS(490), + [anon_sym_node] = ACTIONS(490), + [anon_sym_function] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_private] = ACTIONS(490), + [anon_sym_attr] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_AT_LPAREN] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_undef] = ACTIONS(490), + [anon_sym_include] = ACTIONS(490), + [anon_sym_require] = ACTIONS(490), + [anon_sym_contain] = ACTIONS(490), + [anon_sym_tag] = ACTIONS(490), + [anon_sym_debug] = ACTIONS(490), + [anon_sym_info] = ACTIONS(490), + [anon_sym_notice] = ACTIONS(490), + [anon_sym_warning] = ACTIONS(490), + [anon_sym_err] = ACTIONS(490), + [anon_sym_fail] = ACTIONS(490), + [sym_type] = ACTIONS(488), + [sym_name] = ACTIONS(490), + [sym_number] = ACTIONS(488), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_qmark] = ACTIONS(488), + }, + [147] = { + [sym_hash] = STATE(189), + [sym_comment] = STATE(147), + [ts_builtin_sym_end] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), [anon_sym_LPAREN] = ACTIONS(492), [anon_sym_EQ] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_DASH_GT] = ACTIONS(490), - [anon_sym_TILDE_GT] = ACTIONS(490), - [anon_sym_LT_DASH] = ACTIONS(490), - [anon_sym_LT_TILDE] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_DASH_GT] = ACTIONS(492), + [anon_sym_TILDE_GT] = ACTIONS(492), + [anon_sym_LT_DASH] = ACTIONS(492), + [anon_sym_LT_TILDE] = ACTIONS(492), [anon_sym_AT] = ACTIONS(494), - [anon_sym_AT_AT] = ACTIONS(490), + [anon_sym_AT_AT] = ACTIONS(492), [anon_sym_BANG] = ACTIONS(494), [anon_sym_DASH] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_in] = ACTIONS(494), - [anon_sym_EQ_TILDE] = ACTIONS(490), - [anon_sym_BANG_TILDE] = ACTIONS(490), + [anon_sym_EQ_TILDE] = ACTIONS(492), + [anon_sym_BANG_TILDE] = ACTIONS(492), [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(492), [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), [anon_sym_LT] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), [anon_sym_and] = ACTIONS(494), [anon_sym_or] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_DOT] = ACTIONS(492), [anon_sym_if] = ACTIONS(494), [anon_sym_unless] = ACTIONS(494), [anon_sym_case] = ACTIONS(494), - [anon_sym_LT_PIPE] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_LT_PIPE] = ACTIONS(492), + [anon_sym_LT_LT_PIPE] = ACTIONS(492), [anon_sym_define] = ACTIONS(494), [anon_sym_plan] = ACTIONS(494), [anon_sym_apply] = ACTIONS(494), @@ -20666,12 +20574,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_node] = ACTIONS(494), [anon_sym_function] = ACTIONS(494), [anon_sym_type] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(492), [anon_sym_private] = ACTIONS(494), [anon_sym_attr] = ACTIONS(494), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_DQUOTE] = ACTIONS(490), - [anon_sym_AT_LPAREN] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_AT_LPAREN] = ACTIONS(492), [anon_sym_POUND] = ACTIONS(3), [anon_sym_LBRACK2] = ACTIONS(494), [anon_sym_default] = ACTIONS(494), @@ -20686,1478 +20594,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_warning] = ACTIONS(494), [anon_sym_err] = ACTIONS(494), [anon_sym_fail] = ACTIONS(494), - [sym_type] = ACTIONS(490), + [sym_type] = ACTIONS(492), [sym_name] = ACTIONS(494), - [sym_number] = ACTIONS(490), + [sym_number] = ACTIONS(492), [sym_true] = ACTIONS(494), [sym_false] = ACTIONS(494), - [sym_qmark] = ACTIONS(490), + [sym_qmark] = ACTIONS(492), + }, + [148] = { + [sym_comment] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_DASH_GT] = ACTIONS(468), + [anon_sym_TILDE_GT] = ACTIONS(468), + [anon_sym_LT_DASH] = ACTIONS(468), + [anon_sym_LT_TILDE] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_AT_AT] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_EQ_TILDE] = ACTIONS(468), + [anon_sym_BANG_TILDE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_and] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_unless] = ACTIONS(470), + [anon_sym_case] = ACTIONS(470), + [anon_sym_LT_PIPE] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_define] = ACTIONS(470), + [anon_sym_plan] = ACTIONS(470), + [anon_sym_apply] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_node] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_private] = ACTIONS(470), + [anon_sym_attr] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_AT_LPAREN] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_undef] = ACTIONS(470), + [anon_sym_include] = ACTIONS(470), + [anon_sym_require] = ACTIONS(470), + [anon_sym_contain] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_debug] = ACTIONS(470), + [anon_sym_info] = ACTIONS(470), + [anon_sym_notice] = ACTIONS(470), + [anon_sym_warning] = ACTIONS(470), + [anon_sym_err] = ACTIONS(470), + [anon_sym_fail] = ACTIONS(470), + [sym_type] = ACTIONS(468), + [sym_name] = ACTIONS(470), + [sym_number] = ACTIONS(468), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_qmark] = ACTIONS(468), + }, + [149] = { + [sym_comment] = STATE(149), + [ts_builtin_sym_end] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_DASH_GT] = ACTIONS(498), + [anon_sym_TILDE_GT] = ACTIONS(498), + [anon_sym_LT_DASH] = ACTIONS(498), + [anon_sym_LT_TILDE] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_AT_AT] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_in] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(498), + [anon_sym_BANG_TILDE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_and] = ACTIONS(500), + [anon_sym_or] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_unless] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_LT_PIPE] = ACTIONS(498), + [anon_sym_LT_LT_PIPE] = ACTIONS(498), + [anon_sym_define] = ACTIONS(500), + [anon_sym_plan] = ACTIONS(500), + [anon_sym_apply] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_node] = ACTIONS(500), + [anon_sym_function] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), + [anon_sym_private] = ACTIONS(500), + [anon_sym_attr] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(498), + [anon_sym_AT_LPAREN] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_undef] = ACTIONS(500), + [anon_sym_include] = ACTIONS(500), + [anon_sym_require] = ACTIONS(500), + [anon_sym_contain] = ACTIONS(500), + [anon_sym_tag] = ACTIONS(500), + [anon_sym_debug] = ACTIONS(500), + [anon_sym_info] = ACTIONS(500), + [anon_sym_notice] = ACTIONS(500), + [anon_sym_warning] = ACTIONS(500), + [anon_sym_err] = ACTIONS(500), + [anon_sym_fail] = ACTIONS(500), + [sym_type] = ACTIONS(498), + [sym_name] = ACTIONS(500), + [sym_number] = ACTIONS(498), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_qmark] = ACTIONS(498), + }, + [150] = { + [sym_comment] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_PLUS_EQ] = ACTIONS(498), + [anon_sym_DASH_EQ] = ACTIONS(498), + [anon_sym_DASH_GT] = ACTIONS(498), + [anon_sym_TILDE_GT] = ACTIONS(498), + [anon_sym_LT_DASH] = ACTIONS(498), + [anon_sym_LT_TILDE] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_AT_AT] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_in] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(498), + [anon_sym_BANG_TILDE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_and] = ACTIONS(500), + [anon_sym_or] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_unless] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_LT_PIPE] = ACTIONS(498), + [anon_sym_LT_LT_PIPE] = ACTIONS(498), + [anon_sym_define] = ACTIONS(500), + [anon_sym_plan] = ACTIONS(500), + [anon_sym_apply] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_node] = ACTIONS(500), + [anon_sym_function] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), + [anon_sym_private] = ACTIONS(500), + [anon_sym_attr] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(498), + [anon_sym_AT_LPAREN] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_undef] = ACTIONS(500), + [anon_sym_include] = ACTIONS(500), + [anon_sym_require] = ACTIONS(500), + [anon_sym_contain] = ACTIONS(500), + [anon_sym_tag] = ACTIONS(500), + [anon_sym_debug] = ACTIONS(500), + [anon_sym_info] = ACTIONS(500), + [anon_sym_notice] = ACTIONS(500), + [anon_sym_warning] = ACTIONS(500), + [anon_sym_err] = ACTIONS(500), + [anon_sym_fail] = ACTIONS(500), + [sym_type] = ACTIONS(498), + [sym_name] = ACTIONS(500), + [sym_number] = ACTIONS(498), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_qmark] = ACTIONS(498), }, [151] = { [sym_comment] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_DASH_GT] = ACTIONS(496), - [anon_sym_TILDE_GT] = ACTIONS(496), - [anon_sym_LT_DASH] = ACTIONS(496), - [anon_sym_LT_TILDE] = ACTIONS(496), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_AT_AT] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_in] = ACTIONS(498), - [anon_sym_EQ_TILDE] = ACTIONS(496), - [anon_sym_BANG_TILDE] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_and] = ACTIONS(498), - [anon_sym_or] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_unless] = ACTIONS(498), - [anon_sym_case] = ACTIONS(498), - [anon_sym_LT_PIPE] = ACTIONS(496), - [anon_sym_LT_LT_PIPE] = ACTIONS(496), - [anon_sym_define] = ACTIONS(498), - [anon_sym_plan] = ACTIONS(498), - [anon_sym_apply] = ACTIONS(498), - [anon_sym_class] = ACTIONS(498), - [anon_sym_node] = ACTIONS(498), - [anon_sym_function] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_DOLLAR] = ACTIONS(496), - [anon_sym_private] = ACTIONS(498), - [anon_sym_attr] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_AT_LPAREN] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_undef] = ACTIONS(498), - [anon_sym_include] = ACTIONS(498), - [anon_sym_require] = ACTIONS(498), - [anon_sym_contain] = ACTIONS(498), - [anon_sym_tag] = ACTIONS(498), - [anon_sym_debug] = ACTIONS(498), - [anon_sym_info] = ACTIONS(498), - [anon_sym_notice] = ACTIONS(498), - [anon_sym_warning] = ACTIONS(498), - [anon_sym_err] = ACTIONS(498), - [anon_sym_fail] = ACTIONS(498), - [sym_type] = ACTIONS(496), - [sym_name] = ACTIONS(498), - [sym_number] = ACTIONS(496), - [sym_true] = ACTIONS(498), - [sym_false] = ACTIONS(498), - [sym_qmark] = ACTIONS(496), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_DASH_GT] = ACTIONS(442), + [anon_sym_TILDE_GT] = ACTIONS(442), + [anon_sym_LT_DASH] = ACTIONS(442), + [anon_sym_LT_TILDE] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_else] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), }, [152] = { [sym_comment] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_DASH_GT] = ACTIONS(500), - [anon_sym_TILDE_GT] = ACTIONS(500), - [anon_sym_LT_DASH] = ACTIONS(500), - [anon_sym_LT_TILDE] = ACTIONS(500), - [anon_sym_AT] = ACTIONS(502), - [anon_sym_AT_AT] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_in] = ACTIONS(502), - [anon_sym_EQ_TILDE] = ACTIONS(500), - [anon_sym_BANG_TILDE] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_and] = ACTIONS(502), - [anon_sym_or] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_if] = ACTIONS(502), - [anon_sym_unless] = ACTIONS(502), - [anon_sym_case] = ACTIONS(502), - [anon_sym_LT_PIPE] = ACTIONS(500), - [anon_sym_LT_LT_PIPE] = ACTIONS(500), - [anon_sym_define] = ACTIONS(502), - [anon_sym_plan] = ACTIONS(502), - [anon_sym_apply] = ACTIONS(502), - [anon_sym_class] = ACTIONS(502), - [anon_sym_node] = ACTIONS(502), - [anon_sym_function] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_DOLLAR] = ACTIONS(500), - [anon_sym_private] = ACTIONS(502), - [anon_sym_attr] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE] = ACTIONS(500), - [anon_sym_AT_LPAREN] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_undef] = ACTIONS(502), - [anon_sym_include] = ACTIONS(502), - [anon_sym_require] = ACTIONS(502), - [anon_sym_contain] = ACTIONS(502), - [anon_sym_tag] = ACTIONS(502), - [anon_sym_debug] = ACTIONS(502), - [anon_sym_info] = ACTIONS(502), - [anon_sym_notice] = ACTIONS(502), - [anon_sym_warning] = ACTIONS(502), - [anon_sym_err] = ACTIONS(502), - [anon_sym_fail] = ACTIONS(502), - [sym_type] = ACTIONS(500), - [sym_name] = ACTIONS(502), - [sym_number] = ACTIONS(500), - [sym_true] = ACTIONS(502), - [sym_false] = ACTIONS(502), - [sym_qmark] = ACTIONS(500), + [ts_builtin_sym_end] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_PLUS_EQ] = ACTIONS(502), + [anon_sym_DASH_EQ] = ACTIONS(502), + [anon_sym_DASH_GT] = ACTIONS(502), + [anon_sym_TILDE_GT] = ACTIONS(502), + [anon_sym_LT_DASH] = ACTIONS(502), + [anon_sym_LT_TILDE] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_AT_AT] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_in] = ACTIONS(504), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_BANG_TILDE] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(502), + [anon_sym_and] = ACTIONS(504), + [anon_sym_or] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_unless] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_LT_PIPE] = ACTIONS(502), + [anon_sym_LT_LT_PIPE] = ACTIONS(502), + [anon_sym_define] = ACTIONS(504), + [anon_sym_plan] = ACTIONS(504), + [anon_sym_apply] = ACTIONS(504), + [anon_sym_class] = ACTIONS(504), + [anon_sym_node] = ACTIONS(504), + [anon_sym_function] = ACTIONS(504), + [anon_sym_type] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [anon_sym_private] = ACTIONS(504), + [anon_sym_attr] = ACTIONS(504), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_AT_LPAREN] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(504), + [anon_sym_default] = ACTIONS(504), + [anon_sym_undef] = ACTIONS(504), + [anon_sym_include] = ACTIONS(504), + [anon_sym_require] = ACTIONS(504), + [anon_sym_contain] = ACTIONS(504), + [anon_sym_tag] = ACTIONS(504), + [anon_sym_debug] = ACTIONS(504), + [anon_sym_info] = ACTIONS(504), + [anon_sym_notice] = ACTIONS(504), + [anon_sym_warning] = ACTIONS(504), + [anon_sym_err] = ACTIONS(504), + [anon_sym_fail] = ACTIONS(504), + [sym_type] = ACTIONS(502), + [sym_name] = ACTIONS(504), + [sym_number] = ACTIONS(502), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_qmark] = ACTIONS(502), }, [153] = { [sym_comment] = STATE(153), - [ts_builtin_sym_end] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(504), - [anon_sym_DASH_EQ] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(504), - [anon_sym_TILDE_GT] = ACTIONS(504), - [anon_sym_LT_DASH] = ACTIONS(504), - [anon_sym_LT_TILDE] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_AT_AT] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_in] = ACTIONS(506), - [anon_sym_EQ_TILDE] = ACTIONS(504), - [anon_sym_BANG_TILDE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_and] = ACTIONS(506), - [anon_sym_or] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_if] = ACTIONS(506), - [anon_sym_unless] = ACTIONS(506), - [anon_sym_case] = ACTIONS(506), - [anon_sym_LT_PIPE] = ACTIONS(504), - [anon_sym_LT_LT_PIPE] = ACTIONS(504), - [anon_sym_define] = ACTIONS(506), - [anon_sym_plan] = ACTIONS(506), - [anon_sym_apply] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_node] = ACTIONS(506), - [anon_sym_function] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(504), - [anon_sym_private] = ACTIONS(506), - [anon_sym_attr] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_DQUOTE] = ACTIONS(504), - [anon_sym_AT_LPAREN] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_undef] = ACTIONS(506), - [anon_sym_include] = ACTIONS(506), - [anon_sym_require] = ACTIONS(506), - [anon_sym_contain] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_debug] = ACTIONS(506), - [anon_sym_info] = ACTIONS(506), - [anon_sym_notice] = ACTIONS(506), - [anon_sym_warning] = ACTIONS(506), - [anon_sym_err] = ACTIONS(506), - [anon_sym_fail] = ACTIONS(506), - [sym_type] = ACTIONS(504), - [sym_name] = ACTIONS(506), - [sym_number] = ACTIONS(504), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_qmark] = ACTIONS(504), + [ts_builtin_sym_end] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(506), + [anon_sym_DASH_EQ] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(506), + [anon_sym_TILDE_GT] = ACTIONS(506), + [anon_sym_LT_DASH] = ACTIONS(506), + [anon_sym_LT_TILDE] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_AT_AT] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_in] = ACTIONS(508), + [anon_sym_EQ_TILDE] = ACTIONS(506), + [anon_sym_BANG_TILDE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_and] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_unless] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_LT_PIPE] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_define] = ACTIONS(508), + [anon_sym_plan] = ACTIONS(508), + [anon_sym_apply] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_node] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_type] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_private] = ACTIONS(508), + [anon_sym_attr] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_AT_LPAREN] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_undef] = ACTIONS(508), + [anon_sym_include] = ACTIONS(508), + [anon_sym_require] = ACTIONS(508), + [anon_sym_contain] = ACTIONS(508), + [anon_sym_tag] = ACTIONS(508), + [anon_sym_debug] = ACTIONS(508), + [anon_sym_info] = ACTIONS(508), + [anon_sym_notice] = ACTIONS(508), + [anon_sym_warning] = ACTIONS(508), + [anon_sym_err] = ACTIONS(508), + [anon_sym_fail] = ACTIONS(508), + [sym_type] = ACTIONS(506), + [sym_name] = ACTIONS(508), + [sym_number] = ACTIONS(506), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_qmark] = ACTIONS(506), }, [154] = { [sym_comment] = STATE(154), - [ts_builtin_sym_end] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_PLUS_EQ] = ACTIONS(508), - [anon_sym_DASH_EQ] = ACTIONS(508), - [anon_sym_DASH_GT] = ACTIONS(508), - [anon_sym_TILDE_GT] = ACTIONS(508), - [anon_sym_LT_DASH] = ACTIONS(508), - [anon_sym_LT_TILDE] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(510), - [anon_sym_AT_AT] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_in] = ACTIONS(510), - [anon_sym_EQ_TILDE] = ACTIONS(508), - [anon_sym_BANG_TILDE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_and] = ACTIONS(510), - [anon_sym_or] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_if] = ACTIONS(510), - [anon_sym_unless] = ACTIONS(510), - [anon_sym_case] = ACTIONS(510), - [anon_sym_LT_PIPE] = ACTIONS(508), - [anon_sym_LT_LT_PIPE] = ACTIONS(508), - [anon_sym_define] = ACTIONS(510), - [anon_sym_plan] = ACTIONS(510), - [anon_sym_apply] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_node] = ACTIONS(510), - [anon_sym_function] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_DOLLAR] = ACTIONS(508), - [anon_sym_private] = ACTIONS(510), - [anon_sym_attr] = ACTIONS(510), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [anon_sym_AT_LPAREN] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_undef] = ACTIONS(510), - [anon_sym_include] = ACTIONS(510), - [anon_sym_require] = ACTIONS(510), - [anon_sym_contain] = ACTIONS(510), - [anon_sym_tag] = ACTIONS(510), - [anon_sym_debug] = ACTIONS(510), - [anon_sym_info] = ACTIONS(510), - [anon_sym_notice] = ACTIONS(510), - [anon_sym_warning] = ACTIONS(510), - [anon_sym_err] = ACTIONS(510), - [anon_sym_fail] = ACTIONS(510), - [sym_type] = ACTIONS(508), - [sym_name] = ACTIONS(510), - [sym_number] = ACTIONS(508), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_qmark] = ACTIONS(508), + [ts_builtin_sym_end] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(510), + [anon_sym_DASH_EQ] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(510), + [anon_sym_TILDE_GT] = ACTIONS(510), + [anon_sym_LT_DASH] = ACTIONS(510), + [anon_sym_LT_TILDE] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_AT_AT] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_in] = ACTIONS(512), + [anon_sym_EQ_TILDE] = ACTIONS(510), + [anon_sym_BANG_TILDE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(510), + [anon_sym_and] = ACTIONS(512), + [anon_sym_or] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_unless] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_LT_PIPE] = ACTIONS(510), + [anon_sym_LT_LT_PIPE] = ACTIONS(510), + [anon_sym_define] = ACTIONS(512), + [anon_sym_plan] = ACTIONS(512), + [anon_sym_apply] = ACTIONS(512), + [anon_sym_class] = ACTIONS(512), + [anon_sym_node] = ACTIONS(512), + [anon_sym_function] = ACTIONS(512), + [anon_sym_type] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(510), + [anon_sym_private] = ACTIONS(512), + [anon_sym_attr] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(510), + [anon_sym_AT_LPAREN] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(512), + [anon_sym_default] = ACTIONS(512), + [anon_sym_undef] = ACTIONS(512), + [anon_sym_include] = ACTIONS(512), + [anon_sym_require] = ACTIONS(512), + [anon_sym_contain] = ACTIONS(512), + [anon_sym_tag] = ACTIONS(512), + [anon_sym_debug] = ACTIONS(512), + [anon_sym_info] = ACTIONS(512), + [anon_sym_notice] = ACTIONS(512), + [anon_sym_warning] = ACTIONS(512), + [anon_sym_err] = ACTIONS(512), + [anon_sym_fail] = ACTIONS(512), + [sym_type] = ACTIONS(510), + [sym_name] = ACTIONS(512), + [sym_number] = ACTIONS(510), + [sym_true] = ACTIONS(512), + [sym_false] = ACTIONS(512), + [sym_qmark] = ACTIONS(510), }, [155] = { [sym_comment] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_DASH_GT] = ACTIONS(380), - [anon_sym_TILDE_GT] = ACTIONS(380), - [anon_sym_LT_DASH] = ACTIONS(380), - [anon_sym_LT_TILDE] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_AT] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_EQ_TILDE] = ACTIONS(380), - [anon_sym_BANG_TILDE] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_and] = ACTIONS(382), - [anon_sym_or] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_unless] = ACTIONS(382), - [anon_sym_case] = ACTIONS(382), - [anon_sym_LT_PIPE] = ACTIONS(380), - [anon_sym_LT_LT_PIPE] = ACTIONS(380), - [anon_sym_define] = ACTIONS(382), - [anon_sym_plan] = ACTIONS(382), - [anon_sym_apply] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_node] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(380), - [anon_sym_private] = ACTIONS(382), - [anon_sym_attr] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_AT_LPAREN] = ACTIONS(380), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_undef] = ACTIONS(382), - [anon_sym_include] = ACTIONS(382), - [anon_sym_require] = ACTIONS(382), - [anon_sym_contain] = ACTIONS(382), - [anon_sym_tag] = ACTIONS(382), - [anon_sym_debug] = ACTIONS(382), - [anon_sym_info] = ACTIONS(382), - [anon_sym_notice] = ACTIONS(382), - [anon_sym_warning] = ACTIONS(382), - [anon_sym_err] = ACTIONS(382), - [anon_sym_fail] = ACTIONS(382), - [sym_type] = ACTIONS(380), - [sym_name] = ACTIONS(382), - [sym_number] = ACTIONS(380), - [sym_true] = ACTIONS(382), - [sym_false] = ACTIONS(382), - [sym_qmark] = ACTIONS(380), + [ts_builtin_sym_end] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(514), + [anon_sym_DASH_EQ] = ACTIONS(514), + [anon_sym_DASH_GT] = ACTIONS(514), + [anon_sym_TILDE_GT] = ACTIONS(514), + [anon_sym_LT_DASH] = ACTIONS(514), + [anon_sym_LT_TILDE] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_AT_AT] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_in] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(514), + [anon_sym_BANG_TILDE] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_EQ_EQ] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(514), + [anon_sym_and] = ACTIONS(516), + [anon_sym_or] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_unless] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_LT_PIPE] = ACTIONS(514), + [anon_sym_LT_LT_PIPE] = ACTIONS(514), + [anon_sym_define] = ACTIONS(516), + [anon_sym_plan] = ACTIONS(516), + [anon_sym_apply] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_node] = ACTIONS(516), + [anon_sym_function] = ACTIONS(516), + [anon_sym_type] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(514), + [anon_sym_private] = ACTIONS(516), + [anon_sym_attr] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(514), + [anon_sym_AT_LPAREN] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(516), + [anon_sym_default] = ACTIONS(516), + [anon_sym_undef] = ACTIONS(516), + [anon_sym_include] = ACTIONS(516), + [anon_sym_require] = ACTIONS(516), + [anon_sym_contain] = ACTIONS(516), + [anon_sym_tag] = ACTIONS(516), + [anon_sym_debug] = ACTIONS(516), + [anon_sym_info] = ACTIONS(516), + [anon_sym_notice] = ACTIONS(516), + [anon_sym_warning] = ACTIONS(516), + [anon_sym_err] = ACTIONS(516), + [anon_sym_fail] = ACTIONS(516), + [sym_type] = ACTIONS(514), + [sym_name] = ACTIONS(516), + [sym_number] = ACTIONS(514), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_qmark] = ACTIONS(514), }, [156] = { [sym_comment] = STATE(156), - [ts_builtin_sym_end] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_DASH_GT] = ACTIONS(512), - [anon_sym_TILDE_GT] = ACTIONS(512), - [anon_sym_LT_DASH] = ACTIONS(512), - [anon_sym_LT_TILDE] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(514), - [anon_sym_AT_AT] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_in] = ACTIONS(514), - [anon_sym_EQ_TILDE] = ACTIONS(512), - [anon_sym_BANG_TILDE] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_and] = ACTIONS(514), - [anon_sym_or] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_if] = ACTIONS(514), - [anon_sym_unless] = ACTIONS(514), - [anon_sym_case] = ACTIONS(514), - [anon_sym_LT_PIPE] = ACTIONS(512), - [anon_sym_LT_LT_PIPE] = ACTIONS(512), - [anon_sym_define] = ACTIONS(514), - [anon_sym_plan] = ACTIONS(514), - [anon_sym_apply] = ACTIONS(514), - [anon_sym_class] = ACTIONS(514), - [anon_sym_node] = ACTIONS(514), - [anon_sym_function] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_private] = ACTIONS(514), - [anon_sym_attr] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_AT_LPAREN] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_undef] = ACTIONS(514), - [anon_sym_include] = ACTIONS(514), - [anon_sym_require] = ACTIONS(514), - [anon_sym_contain] = ACTIONS(514), - [anon_sym_tag] = ACTIONS(514), - [anon_sym_debug] = ACTIONS(514), - [anon_sym_info] = ACTIONS(514), - [anon_sym_notice] = ACTIONS(514), - [anon_sym_warning] = ACTIONS(514), - [anon_sym_err] = ACTIONS(514), - [anon_sym_fail] = ACTIONS(514), - [sym_type] = ACTIONS(512), - [sym_name] = ACTIONS(514), - [sym_number] = ACTIONS(512), - [sym_true] = ACTIONS(514), - [sym_false] = ACTIONS(514), - [sym_qmark] = ACTIONS(512), + [ts_builtin_sym_end] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(518), + [anon_sym_DASH_EQ] = ACTIONS(518), + [anon_sym_DASH_GT] = ACTIONS(518), + [anon_sym_TILDE_GT] = ACTIONS(518), + [anon_sym_LT_DASH] = ACTIONS(518), + [anon_sym_LT_TILDE] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_AT_AT] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_in] = ACTIONS(520), + [anon_sym_EQ_TILDE] = ACTIONS(518), + [anon_sym_BANG_TILDE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_and] = ACTIONS(520), + [anon_sym_or] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_unless] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_LT_PIPE] = ACTIONS(518), + [anon_sym_LT_LT_PIPE] = ACTIONS(518), + [anon_sym_define] = ACTIONS(520), + [anon_sym_plan] = ACTIONS(520), + [anon_sym_apply] = ACTIONS(520), + [anon_sym_class] = ACTIONS(520), + [anon_sym_node] = ACTIONS(520), + [anon_sym_function] = ACTIONS(520), + [anon_sym_type] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(518), + [anon_sym_private] = ACTIONS(520), + [anon_sym_attr] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_AT_LPAREN] = ACTIONS(518), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_undef] = ACTIONS(520), + [anon_sym_include] = ACTIONS(520), + [anon_sym_require] = ACTIONS(520), + [anon_sym_contain] = ACTIONS(520), + [anon_sym_tag] = ACTIONS(520), + [anon_sym_debug] = ACTIONS(520), + [anon_sym_info] = ACTIONS(520), + [anon_sym_notice] = ACTIONS(520), + [anon_sym_warning] = ACTIONS(520), + [anon_sym_err] = ACTIONS(520), + [anon_sym_fail] = ACTIONS(520), + [sym_type] = ACTIONS(518), + [sym_name] = ACTIONS(520), + [sym_number] = ACTIONS(518), + [sym_true] = ACTIONS(520), + [sym_false] = ACTIONS(520), + [sym_qmark] = ACTIONS(518), }, [157] = { [sym_comment] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(374), - [anon_sym_PLUS_EQ] = ACTIONS(372), - [anon_sym_DASH_EQ] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(372), - [anon_sym_TILDE_GT] = ACTIONS(372), - [anon_sym_LT_DASH] = ACTIONS(372), - [anon_sym_LT_TILDE] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(374), - [anon_sym_AT_AT] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(374), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_in] = ACTIONS(374), - [anon_sym_EQ_TILDE] = ACTIONS(372), - [anon_sym_BANG_TILDE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(374), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PERCENT] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_and] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_unless] = ACTIONS(374), - [anon_sym_case] = ACTIONS(374), - [anon_sym_LT_PIPE] = ACTIONS(372), - [anon_sym_LT_LT_PIPE] = ACTIONS(372), - [anon_sym_define] = ACTIONS(374), - [anon_sym_plan] = ACTIONS(374), - [anon_sym_apply] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_node] = ACTIONS(374), - [anon_sym_function] = ACTIONS(374), - [anon_sym_type] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(372), - [anon_sym_private] = ACTIONS(374), - [anon_sym_attr] = ACTIONS(374), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym_AT_LPAREN] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(374), - [anon_sym_default] = ACTIONS(374), - [anon_sym_undef] = ACTIONS(374), - [anon_sym_include] = ACTIONS(374), - [anon_sym_require] = ACTIONS(374), - [anon_sym_contain] = ACTIONS(374), - [anon_sym_tag] = ACTIONS(374), - [anon_sym_debug] = ACTIONS(374), - [anon_sym_info] = ACTIONS(374), - [anon_sym_notice] = ACTIONS(374), - [anon_sym_warning] = ACTIONS(374), - [anon_sym_err] = ACTIONS(374), - [anon_sym_fail] = ACTIONS(374), - [sym_type] = ACTIONS(372), - [sym_name] = ACTIONS(374), - [sym_number] = ACTIONS(372), - [sym_true] = ACTIONS(374), - [sym_false] = ACTIONS(374), - [sym_qmark] = ACTIONS(372), - }, - [158] = { - [sym_comment] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_DASH_GT] = ACTIONS(516), - [anon_sym_TILDE_GT] = ACTIONS(516), - [anon_sym_LT_DASH] = ACTIONS(516), - [anon_sym_LT_TILDE] = ACTIONS(516), - [anon_sym_AT] = ACTIONS(518), - [anon_sym_AT_AT] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_in] = ACTIONS(518), - [anon_sym_EQ_TILDE] = ACTIONS(516), - [anon_sym_BANG_TILDE] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_PERCENT] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_and] = ACTIONS(518), - [anon_sym_or] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(516), - [anon_sym_if] = ACTIONS(518), - [anon_sym_unless] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_LT_PIPE] = ACTIONS(516), - [anon_sym_LT_LT_PIPE] = ACTIONS(516), - [anon_sym_define] = ACTIONS(518), - [anon_sym_plan] = ACTIONS(518), - [anon_sym_apply] = ACTIONS(518), - [anon_sym_class] = ACTIONS(518), - [anon_sym_node] = ACTIONS(518), - [anon_sym_function] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_DOLLAR] = ACTIONS(516), - [anon_sym_private] = ACTIONS(518), - [anon_sym_attr] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [anon_sym_AT_LPAREN] = ACTIONS(516), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_undef] = ACTIONS(518), - [anon_sym_include] = ACTIONS(518), - [anon_sym_require] = ACTIONS(518), - [anon_sym_contain] = ACTIONS(518), - [anon_sym_tag] = ACTIONS(518), - [anon_sym_debug] = ACTIONS(518), - [anon_sym_info] = ACTIONS(518), - [anon_sym_notice] = ACTIONS(518), - [anon_sym_warning] = ACTIONS(518), - [anon_sym_err] = ACTIONS(518), - [anon_sym_fail] = ACTIONS(518), - [sym_type] = ACTIONS(516), - [sym_name] = ACTIONS(518), - [sym_number] = ACTIONS(516), - [sym_true] = ACTIONS(518), - [sym_false] = ACTIONS(518), - [sym_qmark] = ACTIONS(516), - }, - [159] = { - [sym_comment] = STATE(159), - [ts_builtin_sym_end] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_PLUS_EQ] = ACTIONS(520), - [anon_sym_DASH_EQ] = ACTIONS(520), - [anon_sym_DASH_GT] = ACTIONS(520), - [anon_sym_TILDE_GT] = ACTIONS(520), - [anon_sym_LT_DASH] = ACTIONS(520), - [anon_sym_LT_TILDE] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_AT_AT] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_in] = ACTIONS(522), - [anon_sym_EQ_TILDE] = ACTIONS(520), - [anon_sym_BANG_TILDE] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_GT_EQ] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_if] = ACTIONS(522), - [anon_sym_unless] = ACTIONS(522), - [anon_sym_case] = ACTIONS(522), - [anon_sym_LT_PIPE] = ACTIONS(520), - [anon_sym_LT_LT_PIPE] = ACTIONS(520), - [anon_sym_define] = ACTIONS(522), - [anon_sym_plan] = ACTIONS(522), - [anon_sym_apply] = ACTIONS(522), - [anon_sym_class] = ACTIONS(522), - [anon_sym_node] = ACTIONS(522), - [anon_sym_function] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_private] = ACTIONS(522), - [anon_sym_attr] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_AT_LPAREN] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_undef] = ACTIONS(522), - [anon_sym_include] = ACTIONS(522), - [anon_sym_require] = ACTIONS(522), - [anon_sym_contain] = ACTIONS(522), - [anon_sym_tag] = ACTIONS(522), - [anon_sym_debug] = ACTIONS(522), - [anon_sym_info] = ACTIONS(522), - [anon_sym_notice] = ACTIONS(522), - [anon_sym_warning] = ACTIONS(522), - [anon_sym_err] = ACTIONS(522), - [anon_sym_fail] = ACTIONS(522), - [sym_type] = ACTIONS(520), - [sym_name] = ACTIONS(522), - [sym_number] = ACTIONS(520), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_qmark] = ACTIONS(520), - }, - [160] = { - [sym_comment] = STATE(160), - [ts_builtin_sym_end] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(524), - [anon_sym_DASH_EQ] = ACTIONS(524), - [anon_sym_DASH_GT] = ACTIONS(524), - [anon_sym_TILDE_GT] = ACTIONS(524), - [anon_sym_LT_DASH] = ACTIONS(524), - [anon_sym_LT_TILDE] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_AT] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_in] = ACTIONS(526), - [anon_sym_EQ_TILDE] = ACTIONS(524), - [anon_sym_BANG_TILDE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_and] = ACTIONS(526), - [anon_sym_or] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_unless] = ACTIONS(526), - [anon_sym_case] = ACTIONS(526), - [anon_sym_LT_PIPE] = ACTIONS(524), - [anon_sym_LT_LT_PIPE] = ACTIONS(524), - [anon_sym_define] = ACTIONS(526), - [anon_sym_plan] = ACTIONS(526), - [anon_sym_apply] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_node] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_type] = ACTIONS(526), - [anon_sym_DOLLAR] = ACTIONS(524), - [anon_sym_private] = ACTIONS(526), - [anon_sym_attr] = ACTIONS(526), - [anon_sym_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE] = ACTIONS(524), - [anon_sym_AT_LPAREN] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_undef] = ACTIONS(526), - [anon_sym_include] = ACTIONS(526), - [anon_sym_require] = ACTIONS(526), - [anon_sym_contain] = ACTIONS(526), - [anon_sym_tag] = ACTIONS(526), - [anon_sym_debug] = ACTIONS(526), - [anon_sym_info] = ACTIONS(526), - [anon_sym_notice] = ACTIONS(526), - [anon_sym_warning] = ACTIONS(526), - [anon_sym_err] = ACTIONS(526), - [anon_sym_fail] = ACTIONS(526), - [sym_type] = ACTIONS(524), - [sym_name] = ACTIONS(526), - [sym_number] = ACTIONS(524), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_qmark] = ACTIONS(524), - }, - [161] = { - [sym_comment] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(530), - [anon_sym_PLUS_EQ] = ACTIONS(528), - [anon_sym_DASH_EQ] = ACTIONS(528), - [anon_sym_DASH_GT] = ACTIONS(528), - [anon_sym_TILDE_GT] = ACTIONS(528), - [anon_sym_LT_DASH] = ACTIONS(528), - [anon_sym_LT_TILDE] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(530), - [anon_sym_AT_AT] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_in] = ACTIONS(530), - [anon_sym_EQ_TILDE] = ACTIONS(528), - [anon_sym_BANG_TILDE] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_and] = ACTIONS(530), - [anon_sym_or] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(530), - [anon_sym_unless] = ACTIONS(530), - [anon_sym_case] = ACTIONS(530), - [anon_sym_LT_PIPE] = ACTIONS(528), - [anon_sym_LT_LT_PIPE] = ACTIONS(528), - [anon_sym_define] = ACTIONS(530), - [anon_sym_plan] = ACTIONS(530), - [anon_sym_apply] = ACTIONS(530), - [anon_sym_class] = ACTIONS(530), - [anon_sym_node] = ACTIONS(530), - [anon_sym_function] = ACTIONS(530), - [anon_sym_type] = ACTIONS(530), - [anon_sym_DOLLAR] = ACTIONS(528), - [anon_sym_private] = ACTIONS(530), - [anon_sym_attr] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_DQUOTE] = ACTIONS(528), - [anon_sym_AT_LPAREN] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(530), - [anon_sym_default] = ACTIONS(530), - [anon_sym_undef] = ACTIONS(530), - [anon_sym_include] = ACTIONS(530), - [anon_sym_require] = ACTIONS(530), - [anon_sym_contain] = ACTIONS(530), - [anon_sym_tag] = ACTIONS(530), - [anon_sym_debug] = ACTIONS(530), - [anon_sym_info] = ACTIONS(530), - [anon_sym_notice] = ACTIONS(530), - [anon_sym_warning] = ACTIONS(530), - [anon_sym_err] = ACTIONS(530), - [anon_sym_fail] = ACTIONS(530), - [sym_type] = ACTIONS(528), - [sym_name] = ACTIONS(530), - [sym_number] = ACTIONS(528), - [sym_true] = ACTIONS(530), - [sym_false] = ACTIONS(530), - [sym_qmark] = ACTIONS(528), - }, - [162] = { - [sym_comment] = STATE(162), - [ts_builtin_sym_end] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(534), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_DASH_GT] = ACTIONS(532), - [anon_sym_TILDE_GT] = ACTIONS(532), - [anon_sym_LT_DASH] = ACTIONS(532), - [anon_sym_LT_TILDE] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_AT_AT] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_in] = ACTIONS(534), - [anon_sym_EQ_TILDE] = ACTIONS(532), - [anon_sym_BANG_TILDE] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_and] = ACTIONS(534), - [anon_sym_or] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [anon_sym_if] = ACTIONS(534), - [anon_sym_unless] = ACTIONS(534), - [anon_sym_case] = ACTIONS(534), - [anon_sym_LT_PIPE] = ACTIONS(532), - [anon_sym_LT_LT_PIPE] = ACTIONS(532), - [anon_sym_define] = ACTIONS(534), - [anon_sym_plan] = ACTIONS(534), - [anon_sym_apply] = ACTIONS(534), - [anon_sym_class] = ACTIONS(534), - [anon_sym_node] = ACTIONS(534), - [anon_sym_function] = ACTIONS(534), - [anon_sym_type] = ACTIONS(534), - [anon_sym_DOLLAR] = ACTIONS(532), - [anon_sym_private] = ACTIONS(534), - [anon_sym_attr] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_DQUOTE] = ACTIONS(532), - [anon_sym_AT_LPAREN] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_undef] = ACTIONS(534), - [anon_sym_include] = ACTIONS(534), - [anon_sym_require] = ACTIONS(534), - [anon_sym_contain] = ACTIONS(534), - [anon_sym_tag] = ACTIONS(534), - [anon_sym_debug] = ACTIONS(534), - [anon_sym_info] = ACTIONS(534), - [anon_sym_notice] = ACTIONS(534), - [anon_sym_warning] = ACTIONS(534), - [anon_sym_err] = ACTIONS(534), - [anon_sym_fail] = ACTIONS(534), - [sym_type] = ACTIONS(532), - [sym_name] = ACTIONS(534), - [sym_number] = ACTIONS(532), - [sym_true] = ACTIONS(534), - [sym_false] = ACTIONS(534), - [sym_qmark] = ACTIONS(532), - }, - [163] = { - [sym_comment] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(536), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(536), - [anon_sym_DASH_EQ] = ACTIONS(536), - [anon_sym_DASH_GT] = ACTIONS(536), - [anon_sym_TILDE_GT] = ACTIONS(536), - [anon_sym_LT_DASH] = ACTIONS(536), - [anon_sym_LT_TILDE] = ACTIONS(536), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_AT_AT] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_in] = ACTIONS(538), - [anon_sym_EQ_TILDE] = ACTIONS(536), - [anon_sym_BANG_TILDE] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(536), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_and] = ACTIONS(538), - [anon_sym_or] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(536), - [anon_sym_if] = ACTIONS(538), - [anon_sym_unless] = ACTIONS(538), - [anon_sym_case] = ACTIONS(538), - [anon_sym_LT_PIPE] = ACTIONS(536), - [anon_sym_LT_LT_PIPE] = ACTIONS(536), - [anon_sym_define] = ACTIONS(538), - [anon_sym_plan] = ACTIONS(538), - [anon_sym_apply] = ACTIONS(538), - [anon_sym_class] = ACTIONS(538), - [anon_sym_node] = ACTIONS(538), - [anon_sym_function] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_DOLLAR] = ACTIONS(536), - [anon_sym_private] = ACTIONS(538), - [anon_sym_attr] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_DQUOTE] = ACTIONS(536), - [anon_sym_AT_LPAREN] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_undef] = ACTIONS(538), - [anon_sym_include] = ACTIONS(538), - [anon_sym_require] = ACTIONS(538), - [anon_sym_contain] = ACTIONS(538), - [anon_sym_tag] = ACTIONS(538), - [anon_sym_debug] = ACTIONS(538), - [anon_sym_info] = ACTIONS(538), - [anon_sym_notice] = ACTIONS(538), - [anon_sym_warning] = ACTIONS(538), - [anon_sym_err] = ACTIONS(538), - [anon_sym_fail] = ACTIONS(538), - [sym_type] = ACTIONS(536), - [sym_name] = ACTIONS(538), - [sym_number] = ACTIONS(536), - [sym_true] = ACTIONS(538), - [sym_false] = ACTIONS(538), - [sym_qmark] = ACTIONS(536), - }, - [164] = { - [sym_comment] = STATE(164), - [ts_builtin_sym_end] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(540), - [anon_sym_DASH_EQ] = ACTIONS(540), - [anon_sym_DASH_GT] = ACTIONS(540), - [anon_sym_TILDE_GT] = ACTIONS(540), - [anon_sym_LT_DASH] = ACTIONS(540), - [anon_sym_LT_TILDE] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_AT_AT] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_in] = ACTIONS(542), - [anon_sym_EQ_TILDE] = ACTIONS(540), - [anon_sym_BANG_TILDE] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_and] = ACTIONS(542), - [anon_sym_or] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_unless] = ACTIONS(542), - [anon_sym_case] = ACTIONS(542), - [anon_sym_LT_PIPE] = ACTIONS(540), - [anon_sym_LT_LT_PIPE] = ACTIONS(540), - [anon_sym_define] = ACTIONS(542), - [anon_sym_plan] = ACTIONS(542), - [anon_sym_apply] = ACTIONS(542), - [anon_sym_class] = ACTIONS(542), - [anon_sym_node] = ACTIONS(542), - [anon_sym_function] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(540), - [anon_sym_private] = ACTIONS(542), - [anon_sym_attr] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(540), - [anon_sym_AT_LPAREN] = ACTIONS(540), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_undef] = ACTIONS(542), - [anon_sym_include] = ACTIONS(542), - [anon_sym_require] = ACTIONS(542), - [anon_sym_contain] = ACTIONS(542), - [anon_sym_tag] = ACTIONS(542), - [anon_sym_debug] = ACTIONS(542), - [anon_sym_info] = ACTIONS(542), - [anon_sym_notice] = ACTIONS(542), - [anon_sym_warning] = ACTIONS(542), - [anon_sym_err] = ACTIONS(542), - [anon_sym_fail] = ACTIONS(542), - [sym_type] = ACTIONS(540), - [sym_name] = ACTIONS(542), - [sym_number] = ACTIONS(540), - [sym_true] = ACTIONS(542), - [sym_false] = ACTIONS(542), - [sym_qmark] = ACTIONS(540), - }, - [165] = { - [sym_comment] = STATE(165), - [ts_builtin_sym_end] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_PLUS_EQ] = ACTIONS(544), - [anon_sym_DASH_EQ] = ACTIONS(544), - [anon_sym_DASH_GT] = ACTIONS(544), - [anon_sym_TILDE_GT] = ACTIONS(544), - [anon_sym_LT_DASH] = ACTIONS(544), - [anon_sym_LT_TILDE] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(546), - [anon_sym_AT_AT] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_in] = ACTIONS(546), - [anon_sym_EQ_TILDE] = ACTIONS(544), - [anon_sym_BANG_TILDE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_and] = ACTIONS(546), - [anon_sym_or] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_if] = ACTIONS(546), - [anon_sym_unless] = ACTIONS(546), - [anon_sym_case] = ACTIONS(546), - [anon_sym_LT_PIPE] = ACTIONS(544), - [anon_sym_LT_LT_PIPE] = ACTIONS(544), - [anon_sym_define] = ACTIONS(546), - [anon_sym_plan] = ACTIONS(546), - [anon_sym_apply] = ACTIONS(546), - [anon_sym_class] = ACTIONS(546), - [anon_sym_node] = ACTIONS(546), - [anon_sym_function] = ACTIONS(546), - [anon_sym_type] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_private] = ACTIONS(546), - [anon_sym_attr] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_AT_LPAREN] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_undef] = ACTIONS(546), - [anon_sym_include] = ACTIONS(546), - [anon_sym_require] = ACTIONS(546), - [anon_sym_contain] = ACTIONS(546), - [anon_sym_tag] = ACTIONS(546), - [anon_sym_debug] = ACTIONS(546), - [anon_sym_info] = ACTIONS(546), - [anon_sym_notice] = ACTIONS(546), - [anon_sym_warning] = ACTIONS(546), - [anon_sym_err] = ACTIONS(546), - [anon_sym_fail] = ACTIONS(546), - [sym_type] = ACTIONS(544), - [sym_name] = ACTIONS(546), - [sym_number] = ACTIONS(544), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_qmark] = ACTIONS(544), - }, - [166] = { - [sym_comment] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_DASH_GT] = ACTIONS(548), - [anon_sym_TILDE_GT] = ACTIONS(548), - [anon_sym_LT_DASH] = ACTIONS(548), - [anon_sym_LT_TILDE] = ACTIONS(548), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_AT_AT] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_in] = ACTIONS(550), - [anon_sym_EQ_TILDE] = ACTIONS(548), - [anon_sym_BANG_TILDE] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_and] = ACTIONS(550), - [anon_sym_or] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_unless] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LT_PIPE] = ACTIONS(548), - [anon_sym_LT_LT_PIPE] = ACTIONS(548), - [anon_sym_define] = ACTIONS(550), - [anon_sym_plan] = ACTIONS(550), - [anon_sym_apply] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_node] = ACTIONS(550), - [anon_sym_function] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_private] = ACTIONS(550), - [anon_sym_attr] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_AT_LPAREN] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_undef] = ACTIONS(550), - [anon_sym_include] = ACTIONS(550), - [anon_sym_require] = ACTIONS(550), - [anon_sym_contain] = ACTIONS(550), - [anon_sym_tag] = ACTIONS(550), - [anon_sym_debug] = ACTIONS(550), - [anon_sym_info] = ACTIONS(550), - [anon_sym_notice] = ACTIONS(550), - [anon_sym_warning] = ACTIONS(550), - [anon_sym_err] = ACTIONS(550), - [anon_sym_fail] = ACTIONS(550), - [sym_type] = ACTIONS(548), - [sym_name] = ACTIONS(550), - [sym_number] = ACTIONS(548), - [sym_true] = ACTIONS(550), - [sym_false] = ACTIONS(550), - [sym_qmark] = ACTIONS(548), - }, - [167] = { - [sym_comment] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(554), - [anon_sym_PLUS_EQ] = ACTIONS(552), - [anon_sym_DASH_EQ] = ACTIONS(552), - [anon_sym_DASH_GT] = ACTIONS(552), - [anon_sym_TILDE_GT] = ACTIONS(552), - [anon_sym_LT_DASH] = ACTIONS(552), - [anon_sym_LT_TILDE] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(554), - [anon_sym_AT_AT] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_in] = ACTIONS(554), - [anon_sym_EQ_TILDE] = ACTIONS(552), - [anon_sym_BANG_TILDE] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_and] = ACTIONS(554), - [anon_sym_or] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_if] = ACTIONS(554), - [anon_sym_unless] = ACTIONS(554), - [anon_sym_case] = ACTIONS(554), - [anon_sym_LT_PIPE] = ACTIONS(552), - [anon_sym_LT_LT_PIPE] = ACTIONS(552), - [anon_sym_define] = ACTIONS(554), - [anon_sym_plan] = ACTIONS(554), - [anon_sym_apply] = ACTIONS(554), - [anon_sym_class] = ACTIONS(554), - [anon_sym_node] = ACTIONS(554), - [anon_sym_function] = ACTIONS(554), - [anon_sym_type] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(552), - [anon_sym_private] = ACTIONS(554), - [anon_sym_attr] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE] = ACTIONS(552), - [anon_sym_AT_LPAREN] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(554), - [anon_sym_default] = ACTIONS(554), - [anon_sym_undef] = ACTIONS(554), - [anon_sym_include] = ACTIONS(554), - [anon_sym_require] = ACTIONS(554), - [anon_sym_contain] = ACTIONS(554), - [anon_sym_tag] = ACTIONS(554), - [anon_sym_debug] = ACTIONS(554), - [anon_sym_info] = ACTIONS(554), - [anon_sym_notice] = ACTIONS(554), - [anon_sym_warning] = ACTIONS(554), - [anon_sym_err] = ACTIONS(554), - [anon_sym_fail] = ACTIONS(554), - [sym_type] = ACTIONS(552), - [sym_name] = ACTIONS(554), - [sym_number] = ACTIONS(552), - [sym_true] = ACTIONS(554), - [sym_false] = ACTIONS(554), - [sym_qmark] = ACTIONS(552), - }, - [168] = { - [sym_comment] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(558), - [anon_sym_PLUS_EQ] = ACTIONS(556), - [anon_sym_DASH_EQ] = ACTIONS(556), - [anon_sym_DASH_GT] = ACTIONS(556), - [anon_sym_TILDE_GT] = ACTIONS(556), - [anon_sym_LT_DASH] = ACTIONS(556), - [anon_sym_LT_TILDE] = ACTIONS(556), - [anon_sym_AT] = ACTIONS(558), - [anon_sym_AT_AT] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_in] = ACTIONS(558), - [anon_sym_EQ_TILDE] = ACTIONS(556), - [anon_sym_BANG_TILDE] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_and] = ACTIONS(558), - [anon_sym_or] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_unless] = ACTIONS(558), - [anon_sym_case] = ACTIONS(558), - [anon_sym_LT_PIPE] = ACTIONS(556), - [anon_sym_LT_LT_PIPE] = ACTIONS(556), - [anon_sym_define] = ACTIONS(558), - [anon_sym_plan] = ACTIONS(558), - [anon_sym_apply] = ACTIONS(558), - [anon_sym_class] = ACTIONS(558), - [anon_sym_node] = ACTIONS(558), - [anon_sym_function] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_private] = ACTIONS(558), - [anon_sym_attr] = ACTIONS(558), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [anon_sym_AT_LPAREN] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(558), - [anon_sym_default] = ACTIONS(558), - [anon_sym_undef] = ACTIONS(558), - [anon_sym_include] = ACTIONS(558), - [anon_sym_require] = ACTIONS(558), - [anon_sym_contain] = ACTIONS(558), - [anon_sym_tag] = ACTIONS(558), - [anon_sym_debug] = ACTIONS(558), - [anon_sym_info] = ACTIONS(558), - [anon_sym_notice] = ACTIONS(558), - [anon_sym_warning] = ACTIONS(558), - [anon_sym_err] = ACTIONS(558), - [anon_sym_fail] = ACTIONS(558), - [sym_type] = ACTIONS(556), - [sym_name] = ACTIONS(558), - [sym_number] = ACTIONS(556), - [sym_true] = ACTIONS(558), - [sym_false] = ACTIONS(558), - [sym_qmark] = ACTIONS(556), - }, - [169] = { - [sym_comment] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(560), - [anon_sym_DASH_EQ] = ACTIONS(560), - [anon_sym_DASH_GT] = ACTIONS(560), - [anon_sym_TILDE_GT] = ACTIONS(560), - [anon_sym_LT_DASH] = ACTIONS(560), - [anon_sym_LT_TILDE] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_AT_AT] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_in] = ACTIONS(562), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_BANG_TILDE] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_BANG_EQ] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(560), - [anon_sym_and] = ACTIONS(562), - [anon_sym_or] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [anon_sym_if] = ACTIONS(562), - [anon_sym_unless] = ACTIONS(562), - [anon_sym_case] = ACTIONS(562), - [anon_sym_LT_PIPE] = ACTIONS(560), - [anon_sym_LT_LT_PIPE] = ACTIONS(560), - [anon_sym_define] = ACTIONS(562), - [anon_sym_plan] = ACTIONS(562), - [anon_sym_apply] = ACTIONS(562), - [anon_sym_class] = ACTIONS(562), - [anon_sym_node] = ACTIONS(562), - [anon_sym_function] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_private] = ACTIONS(562), - [anon_sym_attr] = ACTIONS(562), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(560), - [anon_sym_AT_LPAREN] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_undef] = ACTIONS(562), - [anon_sym_include] = ACTIONS(562), - [anon_sym_require] = ACTIONS(562), - [anon_sym_contain] = ACTIONS(562), - [anon_sym_tag] = ACTIONS(562), - [anon_sym_debug] = ACTIONS(562), - [anon_sym_info] = ACTIONS(562), - [anon_sym_notice] = ACTIONS(562), - [anon_sym_warning] = ACTIONS(562), - [anon_sym_err] = ACTIONS(562), - [anon_sym_fail] = ACTIONS(562), - [sym_type] = ACTIONS(560), - [sym_name] = ACTIONS(562), - [sym_number] = ACTIONS(560), - [sym_true] = ACTIONS(562), - [sym_false] = ACTIONS(562), - [sym_qmark] = ACTIONS(560), - }, - [170] = { - [sym_comment] = STATE(170), [ts_builtin_sym_end] = ACTIONS(303), [anon_sym_SEMI] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(303), @@ -22233,588 +21375,1435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(305), [sym_qmark] = ACTIONS(303), }, - [171] = { - [sym_comment] = STATE(171), - [ts_builtin_sym_end] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_DASH_GT] = ACTIONS(564), - [anon_sym_TILDE_GT] = ACTIONS(564), - [anon_sym_LT_DASH] = ACTIONS(564), - [anon_sym_LT_TILDE] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(566), - [anon_sym_AT_AT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_in] = ACTIONS(566), - [anon_sym_EQ_TILDE] = ACTIONS(564), - [anon_sym_BANG_TILDE] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(566), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_and] = ACTIONS(566), - [anon_sym_or] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_if] = ACTIONS(566), - [anon_sym_unless] = ACTIONS(566), - [anon_sym_case] = ACTIONS(566), - [anon_sym_LT_PIPE] = ACTIONS(564), - [anon_sym_LT_LT_PIPE] = ACTIONS(564), - [anon_sym_define] = ACTIONS(566), - [anon_sym_plan] = ACTIONS(566), - [anon_sym_apply] = ACTIONS(566), - [anon_sym_class] = ACTIONS(566), - [anon_sym_node] = ACTIONS(566), - [anon_sym_function] = ACTIONS(566), - [anon_sym_type] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_private] = ACTIONS(566), - [anon_sym_attr] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(564), - [anon_sym_AT_LPAREN] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(566), - [anon_sym_default] = ACTIONS(566), - [anon_sym_undef] = ACTIONS(566), - [anon_sym_include] = ACTIONS(566), - [anon_sym_require] = ACTIONS(566), - [anon_sym_contain] = ACTIONS(566), - [anon_sym_tag] = ACTIONS(566), - [anon_sym_debug] = ACTIONS(566), - [anon_sym_info] = ACTIONS(566), - [anon_sym_notice] = ACTIONS(566), - [anon_sym_warning] = ACTIONS(566), - [anon_sym_err] = ACTIONS(566), - [anon_sym_fail] = ACTIONS(566), - [sym_type] = ACTIONS(564), - [sym_name] = ACTIONS(566), - [sym_number] = ACTIONS(564), - [sym_true] = ACTIONS(566), - [sym_false] = ACTIONS(566), - [sym_qmark] = ACTIONS(564), + [158] = { + [sym_comment] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_DASH_GT] = ACTIONS(522), + [anon_sym_TILDE_GT] = ACTIONS(522), + [anon_sym_LT_DASH] = ACTIONS(522), + [anon_sym_LT_TILDE] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_AT_AT] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_in] = ACTIONS(524), + [anon_sym_EQ_TILDE] = ACTIONS(522), + [anon_sym_BANG_TILDE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_and] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_unless] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_LT_PIPE] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_define] = ACTIONS(524), + [anon_sym_plan] = ACTIONS(524), + [anon_sym_apply] = ACTIONS(524), + [anon_sym_class] = ACTIONS(524), + [anon_sym_node] = ACTIONS(524), + [anon_sym_function] = ACTIONS(524), + [anon_sym_type] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(522), + [anon_sym_private] = ACTIONS(524), + [anon_sym_attr] = ACTIONS(524), + [anon_sym_SQUOTE] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_AT_LPAREN] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_undef] = ACTIONS(524), + [anon_sym_include] = ACTIONS(524), + [anon_sym_require] = ACTIONS(524), + [anon_sym_contain] = ACTIONS(524), + [anon_sym_tag] = ACTIONS(524), + [anon_sym_debug] = ACTIONS(524), + [anon_sym_info] = ACTIONS(524), + [anon_sym_notice] = ACTIONS(524), + [anon_sym_warning] = ACTIONS(524), + [anon_sym_err] = ACTIONS(524), + [anon_sym_fail] = ACTIONS(524), + [sym_type] = ACTIONS(522), + [sym_name] = ACTIONS(524), + [sym_number] = ACTIONS(522), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_qmark] = ACTIONS(522), }, - [172] = { - [sym_comment] = STATE(172), - [ts_builtin_sym_end] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(568), - [anon_sym_DASH_EQ] = ACTIONS(568), - [anon_sym_DASH_GT] = ACTIONS(568), - [anon_sym_TILDE_GT] = ACTIONS(568), - [anon_sym_LT_DASH] = ACTIONS(568), - [anon_sym_LT_TILDE] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_AT_AT] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_in] = ACTIONS(570), - [anon_sym_EQ_TILDE] = ACTIONS(568), - [anon_sym_BANG_TILDE] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_BANG_EQ] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(568), - [anon_sym_and] = ACTIONS(570), - [anon_sym_or] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_unless] = ACTIONS(570), - [anon_sym_case] = ACTIONS(570), - [anon_sym_LT_PIPE] = ACTIONS(568), - [anon_sym_LT_LT_PIPE] = ACTIONS(568), - [anon_sym_define] = ACTIONS(570), - [anon_sym_plan] = ACTIONS(570), - [anon_sym_apply] = ACTIONS(570), - [anon_sym_class] = ACTIONS(570), - [anon_sym_node] = ACTIONS(570), - [anon_sym_function] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(568), - [anon_sym_private] = ACTIONS(570), - [anon_sym_attr] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_AT_LPAREN] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(570), - [anon_sym_default] = ACTIONS(570), - [anon_sym_undef] = ACTIONS(570), - [anon_sym_include] = ACTIONS(570), - [anon_sym_require] = ACTIONS(570), - [anon_sym_contain] = ACTIONS(570), - [anon_sym_tag] = ACTIONS(570), - [anon_sym_debug] = ACTIONS(570), - [anon_sym_info] = ACTIONS(570), - [anon_sym_notice] = ACTIONS(570), - [anon_sym_warning] = ACTIONS(570), - [anon_sym_err] = ACTIONS(570), - [anon_sym_fail] = ACTIONS(570), - [sym_type] = ACTIONS(568), - [sym_name] = ACTIONS(570), - [sym_number] = ACTIONS(568), - [sym_true] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [sym_qmark] = ACTIONS(568), + [159] = { + [sym_comment] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_PLUS_EQ] = ACTIONS(526), + [anon_sym_DASH_EQ] = ACTIONS(526), + [anon_sym_DASH_GT] = ACTIONS(526), + [anon_sym_TILDE_GT] = ACTIONS(526), + [anon_sym_LT_DASH] = ACTIONS(526), + [anon_sym_LT_TILDE] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_AT_AT] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_in] = ACTIONS(528), + [anon_sym_EQ_TILDE] = ACTIONS(526), + [anon_sym_BANG_TILDE] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_and] = ACTIONS(528), + [anon_sym_or] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_if] = ACTIONS(528), + [anon_sym_unless] = ACTIONS(528), + [anon_sym_case] = ACTIONS(528), + [anon_sym_LT_PIPE] = ACTIONS(526), + [anon_sym_LT_LT_PIPE] = ACTIONS(526), + [anon_sym_define] = ACTIONS(528), + [anon_sym_plan] = ACTIONS(528), + [anon_sym_apply] = ACTIONS(528), + [anon_sym_class] = ACTIONS(528), + [anon_sym_node] = ACTIONS(528), + [anon_sym_function] = ACTIONS(528), + [anon_sym_type] = ACTIONS(528), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_private] = ACTIONS(528), + [anon_sym_attr] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(526), + [anon_sym_AT_LPAREN] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_undef] = ACTIONS(528), + [anon_sym_include] = ACTIONS(528), + [anon_sym_require] = ACTIONS(528), + [anon_sym_contain] = ACTIONS(528), + [anon_sym_tag] = ACTIONS(528), + [anon_sym_debug] = ACTIONS(528), + [anon_sym_info] = ACTIONS(528), + [anon_sym_notice] = ACTIONS(528), + [anon_sym_warning] = ACTIONS(528), + [anon_sym_err] = ACTIONS(528), + [anon_sym_fail] = ACTIONS(528), + [sym_type] = ACTIONS(526), + [sym_name] = ACTIONS(528), + [sym_number] = ACTIONS(526), + [sym_true] = ACTIONS(528), + [sym_false] = ACTIONS(528), + [sym_qmark] = ACTIONS(526), }, - [173] = { - [sym_comment] = STATE(173), - [ts_builtin_sym_end] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_DASH_GT] = ACTIONS(572), - [anon_sym_TILDE_GT] = ACTIONS(572), - [anon_sym_LT_DASH] = ACTIONS(572), - [anon_sym_LT_TILDE] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(574), - [anon_sym_AT_AT] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_in] = ACTIONS(574), - [anon_sym_EQ_TILDE] = ACTIONS(572), - [anon_sym_BANG_TILDE] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_and] = ACTIONS(574), - [anon_sym_or] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_if] = ACTIONS(574), - [anon_sym_unless] = ACTIONS(574), - [anon_sym_case] = ACTIONS(574), - [anon_sym_LT_PIPE] = ACTIONS(572), - [anon_sym_LT_LT_PIPE] = ACTIONS(572), - [anon_sym_define] = ACTIONS(574), - [anon_sym_plan] = ACTIONS(574), - [anon_sym_apply] = ACTIONS(574), - [anon_sym_class] = ACTIONS(574), - [anon_sym_node] = ACTIONS(574), - [anon_sym_function] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_private] = ACTIONS(574), - [anon_sym_attr] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_AT_LPAREN] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_undef] = ACTIONS(574), - [anon_sym_include] = ACTIONS(574), - [anon_sym_require] = ACTIONS(574), - [anon_sym_contain] = ACTIONS(574), - [anon_sym_tag] = ACTIONS(574), - [anon_sym_debug] = ACTIONS(574), - [anon_sym_info] = ACTIONS(574), - [anon_sym_notice] = ACTIONS(574), - [anon_sym_warning] = ACTIONS(574), - [anon_sym_err] = ACTIONS(574), - [anon_sym_fail] = ACTIONS(574), - [sym_type] = ACTIONS(572), - [sym_name] = ACTIONS(574), - [sym_number] = ACTIONS(572), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_qmark] = ACTIONS(572), + [160] = { + [sym_comment] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(530), + [anon_sym_TILDE_GT] = ACTIONS(530), + [anon_sym_LT_DASH] = ACTIONS(530), + [anon_sym_LT_TILDE] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_AT_AT] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_in] = ACTIONS(532), + [anon_sym_EQ_TILDE] = ACTIONS(530), + [anon_sym_BANG_TILDE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_and] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_unless] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_LT_PIPE] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_define] = ACTIONS(532), + [anon_sym_plan] = ACTIONS(532), + [anon_sym_apply] = ACTIONS(532), + [anon_sym_class] = ACTIONS(532), + [anon_sym_node] = ACTIONS(532), + [anon_sym_function] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_DOLLAR] = ACTIONS(530), + [anon_sym_private] = ACTIONS(532), + [anon_sym_attr] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_AT_LPAREN] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_undef] = ACTIONS(532), + [anon_sym_include] = ACTIONS(532), + [anon_sym_require] = ACTIONS(532), + [anon_sym_contain] = ACTIONS(532), + [anon_sym_tag] = ACTIONS(532), + [anon_sym_debug] = ACTIONS(532), + [anon_sym_info] = ACTIONS(532), + [anon_sym_notice] = ACTIONS(532), + [anon_sym_warning] = ACTIONS(532), + [anon_sym_err] = ACTIONS(532), + [anon_sym_fail] = ACTIONS(532), + [sym_type] = ACTIONS(530), + [sym_name] = ACTIONS(532), + [sym_number] = ACTIONS(530), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_qmark] = ACTIONS(530), }, - [174] = { - [sym_comment] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_TILDE_GT] = ACTIONS(576), - [anon_sym_LT_DASH] = ACTIONS(576), - [anon_sym_LT_TILDE] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), - [anon_sym_AT_AT] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_in] = ACTIONS(578), - [anon_sym_EQ_TILDE] = ACTIONS(576), - [anon_sym_BANG_TILDE] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_and] = ACTIONS(578), - [anon_sym_or] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_unless] = ACTIONS(578), - [anon_sym_case] = ACTIONS(578), - [anon_sym_LT_PIPE] = ACTIONS(576), - [anon_sym_LT_LT_PIPE] = ACTIONS(576), - [anon_sym_define] = ACTIONS(578), - [anon_sym_plan] = ACTIONS(578), - [anon_sym_apply] = ACTIONS(578), - [anon_sym_class] = ACTIONS(578), - [anon_sym_node] = ACTIONS(578), - [anon_sym_function] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_private] = ACTIONS(578), - [anon_sym_attr] = ACTIONS(578), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE] = ACTIONS(576), - [anon_sym_AT_LPAREN] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(578), - [anon_sym_default] = ACTIONS(578), - [anon_sym_undef] = ACTIONS(578), - [anon_sym_include] = ACTIONS(578), - [anon_sym_require] = ACTIONS(578), - [anon_sym_contain] = ACTIONS(578), - [anon_sym_tag] = ACTIONS(578), - [anon_sym_debug] = ACTIONS(578), - [anon_sym_info] = ACTIONS(578), - [anon_sym_notice] = ACTIONS(578), - [anon_sym_warning] = ACTIONS(578), - [anon_sym_err] = ACTIONS(578), - [anon_sym_fail] = ACTIONS(578), - [sym_type] = ACTIONS(576), - [sym_name] = ACTIONS(578), - [sym_number] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_qmark] = ACTIONS(576), + [161] = { + [sym_comment] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(534), + [anon_sym_DASH_EQ] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_TILDE_GT] = ACTIONS(534), + [anon_sym_LT_DASH] = ACTIONS(534), + [anon_sym_LT_TILDE] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_AT_AT] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_in] = ACTIONS(536), + [anon_sym_EQ_TILDE] = ACTIONS(534), + [anon_sym_BANG_TILDE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_and] = ACTIONS(536), + [anon_sym_or] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_unless] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_LT_PIPE] = ACTIONS(534), + [anon_sym_LT_LT_PIPE] = ACTIONS(534), + [anon_sym_define] = ACTIONS(536), + [anon_sym_plan] = ACTIONS(536), + [anon_sym_apply] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_node] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [anon_sym_type] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_private] = ACTIONS(536), + [anon_sym_attr] = ACTIONS(536), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_AT_LPAREN] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_undef] = ACTIONS(536), + [anon_sym_include] = ACTIONS(536), + [anon_sym_require] = ACTIONS(536), + [anon_sym_contain] = ACTIONS(536), + [anon_sym_tag] = ACTIONS(536), + [anon_sym_debug] = ACTIONS(536), + [anon_sym_info] = ACTIONS(536), + [anon_sym_notice] = ACTIONS(536), + [anon_sym_warning] = ACTIONS(536), + [anon_sym_err] = ACTIONS(536), + [anon_sym_fail] = ACTIONS(536), + [sym_type] = ACTIONS(534), + [sym_name] = ACTIONS(536), + [sym_number] = ACTIONS(534), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_qmark] = ACTIONS(534), }, - [175] = { - [sym_comment] = STATE(175), - [ts_builtin_sym_end] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_DASH_GT] = ACTIONS(580), - [anon_sym_TILDE_GT] = ACTIONS(580), - [anon_sym_LT_DASH] = ACTIONS(580), - [anon_sym_LT_TILDE] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(582), - [anon_sym_AT_AT] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_in] = ACTIONS(582), - [anon_sym_EQ_TILDE] = ACTIONS(580), - [anon_sym_BANG_TILDE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_and] = ACTIONS(582), - [anon_sym_or] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_if] = ACTIONS(582), - [anon_sym_unless] = ACTIONS(582), - [anon_sym_case] = ACTIONS(582), - [anon_sym_LT_PIPE] = ACTIONS(580), - [anon_sym_LT_LT_PIPE] = ACTIONS(580), - [anon_sym_define] = ACTIONS(582), - [anon_sym_plan] = ACTIONS(582), - [anon_sym_apply] = ACTIONS(582), - [anon_sym_class] = ACTIONS(582), - [anon_sym_node] = ACTIONS(582), - [anon_sym_function] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_private] = ACTIONS(582), - [anon_sym_attr] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_AT_LPAREN] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_undef] = ACTIONS(582), - [anon_sym_include] = ACTIONS(582), - [anon_sym_require] = ACTIONS(582), - [anon_sym_contain] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_debug] = ACTIONS(582), - [anon_sym_info] = ACTIONS(582), - [anon_sym_notice] = ACTIONS(582), - [anon_sym_warning] = ACTIONS(582), - [anon_sym_err] = ACTIONS(582), - [anon_sym_fail] = ACTIONS(582), - [sym_type] = ACTIONS(580), - [sym_name] = ACTIONS(582), - [sym_number] = ACTIONS(580), - [sym_true] = ACTIONS(582), - [sym_false] = ACTIONS(582), - [sym_qmark] = ACTIONS(580), + [162] = { + [sym_comment] = STATE(162), + [ts_builtin_sym_end] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(538), + [anon_sym_DASH_EQ] = ACTIONS(538), + [anon_sym_DASH_GT] = ACTIONS(538), + [anon_sym_TILDE_GT] = ACTIONS(538), + [anon_sym_LT_DASH] = ACTIONS(538), + [anon_sym_LT_TILDE] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_AT_AT] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_in] = ACTIONS(540), + [anon_sym_EQ_TILDE] = ACTIONS(538), + [anon_sym_BANG_TILDE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_and] = ACTIONS(540), + [anon_sym_or] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_if] = ACTIONS(540), + [anon_sym_unless] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_LT_PIPE] = ACTIONS(538), + [anon_sym_LT_LT_PIPE] = ACTIONS(538), + [anon_sym_define] = ACTIONS(540), + [anon_sym_plan] = ACTIONS(540), + [anon_sym_apply] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [anon_sym_node] = ACTIONS(540), + [anon_sym_function] = ACTIONS(540), + [anon_sym_type] = ACTIONS(540), + [anon_sym_DOLLAR] = ACTIONS(538), + [anon_sym_private] = ACTIONS(540), + [anon_sym_attr] = ACTIONS(540), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(538), + [anon_sym_AT_LPAREN] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_undef] = ACTIONS(540), + [anon_sym_include] = ACTIONS(540), + [anon_sym_require] = ACTIONS(540), + [anon_sym_contain] = ACTIONS(540), + [anon_sym_tag] = ACTIONS(540), + [anon_sym_debug] = ACTIONS(540), + [anon_sym_info] = ACTIONS(540), + [anon_sym_notice] = ACTIONS(540), + [anon_sym_warning] = ACTIONS(540), + [anon_sym_err] = ACTIONS(540), + [anon_sym_fail] = ACTIONS(540), + [sym_type] = ACTIONS(538), + [sym_name] = ACTIONS(540), + [sym_number] = ACTIONS(538), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_qmark] = ACTIONS(538), }, - [176] = { - [sym_comment] = STATE(176), - [ts_builtin_sym_end] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(484), - [anon_sym_DASH_EQ] = ACTIONS(484), - [anon_sym_DASH_GT] = ACTIONS(484), - [anon_sym_TILDE_GT] = ACTIONS(484), - [anon_sym_LT_DASH] = ACTIONS(484), - [anon_sym_LT_TILDE] = ACTIONS(484), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_AT_AT] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_in] = ACTIONS(486), - [anon_sym_EQ_TILDE] = ACTIONS(484), - [anon_sym_BANG_TILDE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_and] = ACTIONS(486), - [anon_sym_or] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_if] = ACTIONS(486), - [anon_sym_unless] = ACTIONS(486), - [anon_sym_case] = ACTIONS(486), - [anon_sym_LT_PIPE] = ACTIONS(484), - [anon_sym_LT_LT_PIPE] = ACTIONS(484), - [anon_sym_define] = ACTIONS(486), - [anon_sym_plan] = ACTIONS(486), - [anon_sym_apply] = ACTIONS(486), - [anon_sym_class] = ACTIONS(486), - [anon_sym_node] = ACTIONS(486), - [anon_sym_function] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_private] = ACTIONS(486), - [anon_sym_attr] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_DQUOTE] = ACTIONS(484), - [anon_sym_AT_LPAREN] = ACTIONS(484), + [163] = { + [sym_comment] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(544), + [anon_sym_PLUS_EQ] = ACTIONS(542), + [anon_sym_DASH_EQ] = ACTIONS(542), + [anon_sym_DASH_GT] = ACTIONS(542), + [anon_sym_TILDE_GT] = ACTIONS(542), + [anon_sym_LT_DASH] = ACTIONS(542), + [anon_sym_LT_TILDE] = ACTIONS(542), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_AT_AT] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_in] = ACTIONS(544), + [anon_sym_EQ_TILDE] = ACTIONS(542), + [anon_sym_BANG_TILDE] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_LT_LT] = ACTIONS(544), + [anon_sym_GT_GT] = ACTIONS(542), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_EQ_EQ] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(542), + [anon_sym_and] = ACTIONS(544), + [anon_sym_or] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_if] = ACTIONS(544), + [anon_sym_unless] = ACTIONS(544), + [anon_sym_case] = ACTIONS(544), + [anon_sym_LT_PIPE] = ACTIONS(542), + [anon_sym_LT_LT_PIPE] = ACTIONS(542), + [anon_sym_define] = ACTIONS(544), + [anon_sym_plan] = ACTIONS(544), + [anon_sym_apply] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [anon_sym_node] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_type] = ACTIONS(544), + [anon_sym_DOLLAR] = ACTIONS(542), + [anon_sym_private] = ACTIONS(544), + [anon_sym_attr] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(542), + [anon_sym_DQUOTE] = ACTIONS(542), + [anon_sym_AT_LPAREN] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(544), + [anon_sym_default] = ACTIONS(544), + [anon_sym_undef] = ACTIONS(544), + [anon_sym_include] = ACTIONS(544), + [anon_sym_require] = ACTIONS(544), + [anon_sym_contain] = ACTIONS(544), + [anon_sym_tag] = ACTIONS(544), + [anon_sym_debug] = ACTIONS(544), + [anon_sym_info] = ACTIONS(544), + [anon_sym_notice] = ACTIONS(544), + [anon_sym_warning] = ACTIONS(544), + [anon_sym_err] = ACTIONS(544), + [anon_sym_fail] = ACTIONS(544), + [sym_type] = ACTIONS(542), + [sym_name] = ACTIONS(544), + [sym_number] = ACTIONS(542), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_qmark] = ACTIONS(542), + }, + [164] = { + [sym_comment] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(546), + [anon_sym_DASH_EQ] = ACTIONS(546), + [anon_sym_DASH_GT] = ACTIONS(546), + [anon_sym_TILDE_GT] = ACTIONS(546), + [anon_sym_LT_DASH] = ACTIONS(546), + [anon_sym_LT_TILDE] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_AT_AT] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_in] = ACTIONS(548), + [anon_sym_EQ_TILDE] = ACTIONS(546), + [anon_sym_BANG_TILDE] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_and] = ACTIONS(548), + [anon_sym_or] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_if] = ACTIONS(548), + [anon_sym_unless] = ACTIONS(548), + [anon_sym_case] = ACTIONS(548), + [anon_sym_LT_PIPE] = ACTIONS(546), + [anon_sym_LT_LT_PIPE] = ACTIONS(546), + [anon_sym_define] = ACTIONS(548), + [anon_sym_plan] = ACTIONS(548), + [anon_sym_apply] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [anon_sym_node] = ACTIONS(548), + [anon_sym_function] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(546), + [anon_sym_private] = ACTIONS(548), + [anon_sym_attr] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_AT_LPAREN] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_undef] = ACTIONS(548), + [anon_sym_include] = ACTIONS(548), + [anon_sym_require] = ACTIONS(548), + [anon_sym_contain] = ACTIONS(548), + [anon_sym_tag] = ACTIONS(548), + [anon_sym_debug] = ACTIONS(548), + [anon_sym_info] = ACTIONS(548), + [anon_sym_notice] = ACTIONS(548), + [anon_sym_warning] = ACTIONS(548), + [anon_sym_err] = ACTIONS(548), + [anon_sym_fail] = ACTIONS(548), + [sym_type] = ACTIONS(546), + [sym_name] = ACTIONS(548), + [sym_number] = ACTIONS(546), + [sym_true] = ACTIONS(548), + [sym_false] = ACTIONS(548), + [sym_qmark] = ACTIONS(546), + }, + [165] = { + [sym_comment] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_DASH_GT] = ACTIONS(550), + [anon_sym_TILDE_GT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(550), + [anon_sym_LT_TILDE] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_AT_AT] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_in] = ACTIONS(552), + [anon_sym_EQ_TILDE] = ACTIONS(550), + [anon_sym_BANG_TILDE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_and] = ACTIONS(552), + [anon_sym_or] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_if] = ACTIONS(552), + [anon_sym_unless] = ACTIONS(552), + [anon_sym_case] = ACTIONS(552), + [anon_sym_LT_PIPE] = ACTIONS(550), + [anon_sym_LT_LT_PIPE] = ACTIONS(550), + [anon_sym_define] = ACTIONS(552), + [anon_sym_plan] = ACTIONS(552), + [anon_sym_apply] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [anon_sym_node] = ACTIONS(552), + [anon_sym_function] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_DOLLAR] = ACTIONS(550), + [anon_sym_private] = ACTIONS(552), + [anon_sym_attr] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(550), + [anon_sym_AT_LPAREN] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_undef] = ACTIONS(552), + [anon_sym_include] = ACTIONS(552), + [anon_sym_require] = ACTIONS(552), + [anon_sym_contain] = ACTIONS(552), + [anon_sym_tag] = ACTIONS(552), + [anon_sym_debug] = ACTIONS(552), + [anon_sym_info] = ACTIONS(552), + [anon_sym_notice] = ACTIONS(552), + [anon_sym_warning] = ACTIONS(552), + [anon_sym_err] = ACTIONS(552), + [anon_sym_fail] = ACTIONS(552), + [sym_type] = ACTIONS(550), + [sym_name] = ACTIONS(552), + [sym_number] = ACTIONS(550), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_qmark] = ACTIONS(550), + }, + [166] = { + [sym_comment] = STATE(166), + [ts_builtin_sym_end] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_TILDE_GT] = ACTIONS(554), + [anon_sym_LT_DASH] = ACTIONS(554), + [anon_sym_LT_TILDE] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_AT_AT] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_in] = ACTIONS(556), + [anon_sym_EQ_TILDE] = ACTIONS(554), + [anon_sym_BANG_TILDE] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_and] = ACTIONS(556), + [anon_sym_or] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_unless] = ACTIONS(556), + [anon_sym_case] = ACTIONS(556), + [anon_sym_LT_PIPE] = ACTIONS(554), + [anon_sym_LT_LT_PIPE] = ACTIONS(554), + [anon_sym_define] = ACTIONS(556), + [anon_sym_plan] = ACTIONS(556), + [anon_sym_apply] = ACTIONS(556), + [anon_sym_class] = ACTIONS(556), + [anon_sym_node] = ACTIONS(556), + [anon_sym_function] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(554), + [anon_sym_private] = ACTIONS(556), + [anon_sym_attr] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(554), + [anon_sym_AT_LPAREN] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_undef] = ACTIONS(556), + [anon_sym_include] = ACTIONS(556), + [anon_sym_require] = ACTIONS(556), + [anon_sym_contain] = ACTIONS(556), + [anon_sym_tag] = ACTIONS(556), + [anon_sym_debug] = ACTIONS(556), + [anon_sym_info] = ACTIONS(556), + [anon_sym_notice] = ACTIONS(556), + [anon_sym_warning] = ACTIONS(556), + [anon_sym_err] = ACTIONS(556), + [anon_sym_fail] = ACTIONS(556), + [sym_type] = ACTIONS(554), + [sym_name] = ACTIONS(556), + [sym_number] = ACTIONS(554), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_qmark] = ACTIONS(554), + }, + [167] = { + [sym_comment] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_DASH_GT] = ACTIONS(558), + [anon_sym_TILDE_GT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(558), + [anon_sym_LT_TILDE] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_AT_AT] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_in] = ACTIONS(560), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_BANG_TILDE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_and] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_unless] = ACTIONS(560), + [anon_sym_case] = ACTIONS(560), + [anon_sym_LT_PIPE] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_define] = ACTIONS(560), + [anon_sym_plan] = ACTIONS(560), + [anon_sym_apply] = ACTIONS(560), + [anon_sym_class] = ACTIONS(560), + [anon_sym_node] = ACTIONS(560), + [anon_sym_function] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_private] = ACTIONS(560), + [anon_sym_attr] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_AT_LPAREN] = ACTIONS(558), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_undef] = ACTIONS(560), + [anon_sym_include] = ACTIONS(560), + [anon_sym_require] = ACTIONS(560), + [anon_sym_contain] = ACTIONS(560), + [anon_sym_tag] = ACTIONS(560), + [anon_sym_debug] = ACTIONS(560), + [anon_sym_info] = ACTIONS(560), + [anon_sym_notice] = ACTIONS(560), + [anon_sym_warning] = ACTIONS(560), + [anon_sym_err] = ACTIONS(560), + [anon_sym_fail] = ACTIONS(560), + [sym_type] = ACTIONS(558), + [sym_name] = ACTIONS(560), + [sym_number] = ACTIONS(558), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_qmark] = ACTIONS(558), + }, + [168] = { + [sym_comment] = STATE(168), + [ts_builtin_sym_end] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_DASH_GT] = ACTIONS(562), + [anon_sym_TILDE_GT] = ACTIONS(562), + [anon_sym_LT_DASH] = ACTIONS(562), + [anon_sym_LT_TILDE] = ACTIONS(562), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_AT_AT] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_in] = ACTIONS(564), + [anon_sym_EQ_TILDE] = ACTIONS(562), + [anon_sym_BANG_TILDE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_and] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_unless] = ACTIONS(564), + [anon_sym_case] = ACTIONS(564), + [anon_sym_LT_PIPE] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_define] = ACTIONS(564), + [anon_sym_plan] = ACTIONS(564), + [anon_sym_apply] = ACTIONS(564), + [anon_sym_class] = ACTIONS(564), + [anon_sym_node] = ACTIONS(564), + [anon_sym_function] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(562), + [anon_sym_private] = ACTIONS(564), + [anon_sym_attr] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(562), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_AT_LPAREN] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_undef] = ACTIONS(564), + [anon_sym_include] = ACTIONS(564), + [anon_sym_require] = ACTIONS(564), + [anon_sym_contain] = ACTIONS(564), + [anon_sym_tag] = ACTIONS(564), + [anon_sym_debug] = ACTIONS(564), + [anon_sym_info] = ACTIONS(564), + [anon_sym_notice] = ACTIONS(564), + [anon_sym_warning] = ACTIONS(564), + [anon_sym_err] = ACTIONS(564), + [anon_sym_fail] = ACTIONS(564), + [sym_type] = ACTIONS(562), + [sym_name] = ACTIONS(564), + [sym_number] = ACTIONS(562), + [sym_true] = ACTIONS(564), + [sym_false] = ACTIONS(564), + [sym_qmark] = ACTIONS(562), + }, + [169] = { + [sym_comment] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_DASH_GT] = ACTIONS(566), + [anon_sym_TILDE_GT] = ACTIONS(566), + [anon_sym_LT_DASH] = ACTIONS(566), + [anon_sym_LT_TILDE] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_AT_AT] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_in] = ACTIONS(568), + [anon_sym_EQ_TILDE] = ACTIONS(566), + [anon_sym_BANG_TILDE] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_and] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_if] = ACTIONS(568), + [anon_sym_unless] = ACTIONS(568), + [anon_sym_case] = ACTIONS(568), + [anon_sym_LT_PIPE] = ACTIONS(566), + [anon_sym_LT_LT_PIPE] = ACTIONS(566), + [anon_sym_define] = ACTIONS(568), + [anon_sym_plan] = ACTIONS(568), + [anon_sym_apply] = ACTIONS(568), + [anon_sym_class] = ACTIONS(568), + [anon_sym_node] = ACTIONS(568), + [anon_sym_function] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_private] = ACTIONS(568), + [anon_sym_attr] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_AT_LPAREN] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_undef] = ACTIONS(568), + [anon_sym_include] = ACTIONS(568), + [anon_sym_require] = ACTIONS(568), + [anon_sym_contain] = ACTIONS(568), + [anon_sym_tag] = ACTIONS(568), + [anon_sym_debug] = ACTIONS(568), + [anon_sym_info] = ACTIONS(568), + [anon_sym_notice] = ACTIONS(568), + [anon_sym_warning] = ACTIONS(568), + [anon_sym_err] = ACTIONS(568), + [anon_sym_fail] = ACTIONS(568), + [sym_type] = ACTIONS(566), + [sym_name] = ACTIONS(568), + [sym_number] = ACTIONS(566), + [sym_true] = ACTIONS(568), + [sym_false] = ACTIONS(568), + [sym_qmark] = ACTIONS(566), + }, + [170] = { + [sym_comment] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_TILDE_GT] = ACTIONS(570), + [anon_sym_LT_DASH] = ACTIONS(570), + [anon_sym_LT_TILDE] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_AT_AT] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_in] = ACTIONS(572), + [anon_sym_EQ_TILDE] = ACTIONS(570), + [anon_sym_BANG_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_and] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_if] = ACTIONS(572), + [anon_sym_unless] = ACTIONS(572), + [anon_sym_case] = ACTIONS(572), + [anon_sym_LT_PIPE] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_define] = ACTIONS(572), + [anon_sym_plan] = ACTIONS(572), + [anon_sym_apply] = ACTIONS(572), + [anon_sym_class] = ACTIONS(572), + [anon_sym_node] = ACTIONS(572), + [anon_sym_function] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_private] = ACTIONS(572), + [anon_sym_attr] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [anon_sym_AT_LPAREN] = ACTIONS(570), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_undef] = ACTIONS(572), + [anon_sym_include] = ACTIONS(572), + [anon_sym_require] = ACTIONS(572), + [anon_sym_contain] = ACTIONS(572), + [anon_sym_tag] = ACTIONS(572), + [anon_sym_debug] = ACTIONS(572), + [anon_sym_info] = ACTIONS(572), + [anon_sym_notice] = ACTIONS(572), + [anon_sym_warning] = ACTIONS(572), + [anon_sym_err] = ACTIONS(572), + [anon_sym_fail] = ACTIONS(572), + [sym_type] = ACTIONS(570), + [sym_name] = ACTIONS(572), + [sym_number] = ACTIONS(570), + [sym_true] = ACTIONS(572), + [sym_false] = ACTIONS(572), + [sym_qmark] = ACTIONS(570), + }, + [171] = { + [sym_comment] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_DASH_GT] = ACTIONS(574), + [anon_sym_TILDE_GT] = ACTIONS(574), + [anon_sym_LT_DASH] = ACTIONS(574), + [anon_sym_LT_TILDE] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_AT_AT] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(574), + [anon_sym_in] = ACTIONS(576), + [anon_sym_EQ_TILDE] = ACTIONS(574), + [anon_sym_BANG_TILDE] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_and] = ACTIONS(576), + [anon_sym_or] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_if] = ACTIONS(576), + [anon_sym_unless] = ACTIONS(576), + [anon_sym_case] = ACTIONS(576), + [anon_sym_LT_PIPE] = ACTIONS(574), + [anon_sym_LT_LT_PIPE] = ACTIONS(574), + [anon_sym_define] = ACTIONS(576), + [anon_sym_plan] = ACTIONS(576), + [anon_sym_apply] = ACTIONS(576), + [anon_sym_class] = ACTIONS(576), + [anon_sym_node] = ACTIONS(576), + [anon_sym_function] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_private] = ACTIONS(576), + [anon_sym_attr] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_AT_LPAREN] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_undef] = ACTIONS(576), + [anon_sym_include] = ACTIONS(576), + [anon_sym_require] = ACTIONS(576), + [anon_sym_contain] = ACTIONS(576), + [anon_sym_tag] = ACTIONS(576), + [anon_sym_debug] = ACTIONS(576), + [anon_sym_info] = ACTIONS(576), + [anon_sym_notice] = ACTIONS(576), + [anon_sym_warning] = ACTIONS(576), + [anon_sym_err] = ACTIONS(576), + [anon_sym_fail] = ACTIONS(576), + [sym_type] = ACTIONS(574), + [sym_name] = ACTIONS(576), + [sym_number] = ACTIONS(574), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [sym_qmark] = ACTIONS(574), + }, + [172] = { + [sym_comment] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_DASH_GT] = ACTIONS(578), + [anon_sym_TILDE_GT] = ACTIONS(578), + [anon_sym_LT_DASH] = ACTIONS(578), + [anon_sym_LT_TILDE] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_AT_AT] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(578), + [anon_sym_in] = ACTIONS(580), + [anon_sym_EQ_TILDE] = ACTIONS(578), + [anon_sym_BANG_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_and] = ACTIONS(580), + [anon_sym_or] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_if] = ACTIONS(580), + [anon_sym_unless] = ACTIONS(580), + [anon_sym_case] = ACTIONS(580), + [anon_sym_LT_PIPE] = ACTIONS(578), + [anon_sym_LT_LT_PIPE] = ACTIONS(578), + [anon_sym_define] = ACTIONS(580), + [anon_sym_plan] = ACTIONS(580), + [anon_sym_apply] = ACTIONS(580), + [anon_sym_class] = ACTIONS(580), + [anon_sym_node] = ACTIONS(580), + [anon_sym_function] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_private] = ACTIONS(580), + [anon_sym_attr] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_AT_LPAREN] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_undef] = ACTIONS(580), + [anon_sym_include] = ACTIONS(580), + [anon_sym_require] = ACTIONS(580), + [anon_sym_contain] = ACTIONS(580), + [anon_sym_tag] = ACTIONS(580), + [anon_sym_debug] = ACTIONS(580), + [anon_sym_info] = ACTIONS(580), + [anon_sym_notice] = ACTIONS(580), + [anon_sym_warning] = ACTIONS(580), + [anon_sym_err] = ACTIONS(580), + [anon_sym_fail] = ACTIONS(580), + [sym_type] = ACTIONS(578), + [sym_name] = ACTIONS(580), + [sym_number] = ACTIONS(578), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_qmark] = ACTIONS(578), + }, + [173] = { + [sym_comment] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_DASH_GT] = ACTIONS(492), + [anon_sym_TILDE_GT] = ACTIONS(492), + [anon_sym_LT_DASH] = ACTIONS(492), + [anon_sym_LT_TILDE] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_AT_AT] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_in] = ACTIONS(494), + [anon_sym_EQ_TILDE] = ACTIONS(492), + [anon_sym_BANG_TILDE] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_and] = ACTIONS(494), + [anon_sym_or] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_if] = ACTIONS(494), + [anon_sym_unless] = ACTIONS(494), + [anon_sym_case] = ACTIONS(494), + [anon_sym_LT_PIPE] = ACTIONS(492), + [anon_sym_LT_LT_PIPE] = ACTIONS(492), + [anon_sym_define] = ACTIONS(494), + [anon_sym_plan] = ACTIONS(494), + [anon_sym_apply] = ACTIONS(494), + [anon_sym_class] = ACTIONS(494), + [anon_sym_node] = ACTIONS(494), + [anon_sym_function] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_private] = ACTIONS(494), + [anon_sym_attr] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_AT_LPAREN] = ACTIONS(492), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(486), - [anon_sym_default] = ACTIONS(486), - [anon_sym_undef] = ACTIONS(486), - [anon_sym_include] = ACTIONS(486), - [anon_sym_require] = ACTIONS(486), - [anon_sym_contain] = ACTIONS(486), - [anon_sym_tag] = ACTIONS(486), - [anon_sym_debug] = ACTIONS(486), - [anon_sym_info] = ACTIONS(486), - [anon_sym_notice] = ACTIONS(486), - [anon_sym_warning] = ACTIONS(486), - [anon_sym_err] = ACTIONS(486), - [anon_sym_fail] = ACTIONS(486), - [sym_type] = ACTIONS(484), - [sym_name] = ACTIONS(486), - [sym_number] = ACTIONS(484), - [sym_true] = ACTIONS(486), - [sym_false] = ACTIONS(486), - [sym_qmark] = ACTIONS(484), + [anon_sym_LBRACK2] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_undef] = ACTIONS(494), + [anon_sym_include] = ACTIONS(494), + [anon_sym_require] = ACTIONS(494), + [anon_sym_contain] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_debug] = ACTIONS(494), + [anon_sym_info] = ACTIONS(494), + [anon_sym_notice] = ACTIONS(494), + [anon_sym_warning] = ACTIONS(494), + [anon_sym_err] = ACTIONS(494), + [anon_sym_fail] = ACTIONS(494), + [sym_type] = ACTIONS(492), + [sym_name] = ACTIONS(494), + [sym_number] = ACTIONS(492), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_qmark] = ACTIONS(492), }, - [177] = { - [sym_comment] = STATE(177), - [ts_builtin_sym_end] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_DASH_GT] = ACTIONS(584), - [anon_sym_TILDE_GT] = ACTIONS(584), - [anon_sym_LT_DASH] = ACTIONS(584), - [anon_sym_LT_TILDE] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_AT_AT] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_in] = ACTIONS(586), - [anon_sym_EQ_TILDE] = ACTIONS(584), - [anon_sym_BANG_TILDE] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_and] = ACTIONS(586), - [anon_sym_or] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [anon_sym_if] = ACTIONS(586), - [anon_sym_unless] = ACTIONS(586), - [anon_sym_case] = ACTIONS(586), - [anon_sym_LT_PIPE] = ACTIONS(584), - [anon_sym_LT_LT_PIPE] = ACTIONS(584), - [anon_sym_define] = ACTIONS(586), - [anon_sym_plan] = ACTIONS(586), - [anon_sym_apply] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_node] = ACTIONS(586), - [anon_sym_function] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(584), - [anon_sym_private] = ACTIONS(586), - [anon_sym_attr] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(584), - [anon_sym_AT_LPAREN] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_undef] = ACTIONS(586), - [anon_sym_include] = ACTIONS(586), - [anon_sym_require] = ACTIONS(586), - [anon_sym_contain] = ACTIONS(586), - [anon_sym_tag] = ACTIONS(586), - [anon_sym_debug] = ACTIONS(586), - [anon_sym_info] = ACTIONS(586), - [anon_sym_notice] = ACTIONS(586), - [anon_sym_warning] = ACTIONS(586), - [anon_sym_err] = ACTIONS(586), - [anon_sym_fail] = ACTIONS(586), - [sym_type] = ACTIONS(584), - [sym_name] = ACTIONS(586), - [sym_number] = ACTIONS(584), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_qmark] = ACTIONS(584), + [174] = { + [sym_comment] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_DASH_GT] = ACTIONS(582), + [anon_sym_TILDE_GT] = ACTIONS(582), + [anon_sym_LT_DASH] = ACTIONS(582), + [anon_sym_LT_TILDE] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_AT_AT] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_in] = ACTIONS(584), + [anon_sym_EQ_TILDE] = ACTIONS(582), + [anon_sym_BANG_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_and] = ACTIONS(584), + [anon_sym_or] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_unless] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LT_PIPE] = ACTIONS(582), + [anon_sym_LT_LT_PIPE] = ACTIONS(582), + [anon_sym_define] = ACTIONS(584), + [anon_sym_plan] = ACTIONS(584), + [anon_sym_apply] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_node] = ACTIONS(584), + [anon_sym_function] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(582), + [anon_sym_private] = ACTIONS(584), + [anon_sym_attr] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_AT_LPAREN] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_undef] = ACTIONS(584), + [anon_sym_include] = ACTIONS(584), + [anon_sym_require] = ACTIONS(584), + [anon_sym_contain] = ACTIONS(584), + [anon_sym_tag] = ACTIONS(584), + [anon_sym_debug] = ACTIONS(584), + [anon_sym_info] = ACTIONS(584), + [anon_sym_notice] = ACTIONS(584), + [anon_sym_warning] = ACTIONS(584), + [anon_sym_err] = ACTIONS(584), + [anon_sym_fail] = ACTIONS(584), + [sym_type] = ACTIONS(582), + [sym_name] = ACTIONS(584), + [sym_number] = ACTIONS(582), + [sym_true] = ACTIONS(584), + [sym_false] = ACTIONS(584), + [sym_qmark] = ACTIONS(582), }, - [178] = { - [sym_comment] = STATE(178), - [ts_builtin_sym_end] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), + [175] = { + [sym_comment] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(586), + [anon_sym_DASH_EQ] = ACTIONS(586), + [anon_sym_DASH_GT] = ACTIONS(586), + [anon_sym_TILDE_GT] = ACTIONS(586), + [anon_sym_LT_DASH] = ACTIONS(586), + [anon_sym_LT_TILDE] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_AT_AT] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_in] = ACTIONS(588), + [anon_sym_EQ_TILDE] = ACTIONS(586), + [anon_sym_BANG_TILDE] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_and] = ACTIONS(588), + [anon_sym_or] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_if] = ACTIONS(588), + [anon_sym_unless] = ACTIONS(588), + [anon_sym_case] = ACTIONS(588), + [anon_sym_LT_PIPE] = ACTIONS(586), + [anon_sym_LT_LT_PIPE] = ACTIONS(586), + [anon_sym_define] = ACTIONS(588), + [anon_sym_plan] = ACTIONS(588), + [anon_sym_apply] = ACTIONS(588), + [anon_sym_class] = ACTIONS(588), + [anon_sym_node] = ACTIONS(588), + [anon_sym_function] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(586), + [anon_sym_private] = ACTIONS(588), + [anon_sym_attr] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_LPAREN] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_undef] = ACTIONS(588), + [anon_sym_include] = ACTIONS(588), + [anon_sym_require] = ACTIONS(588), + [anon_sym_contain] = ACTIONS(588), + [anon_sym_tag] = ACTIONS(588), + [anon_sym_debug] = ACTIONS(588), + [anon_sym_info] = ACTIONS(588), + [anon_sym_notice] = ACTIONS(588), + [anon_sym_warning] = ACTIONS(588), + [anon_sym_err] = ACTIONS(588), + [anon_sym_fail] = ACTIONS(588), + [sym_type] = ACTIONS(586), + [sym_name] = ACTIONS(588), + [sym_number] = ACTIONS(586), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_qmark] = ACTIONS(586), + }, + [176] = { + [sym_comment] = STATE(176), + [ts_builtin_sym_end] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(590), [anon_sym_LPAREN] = ACTIONS(590), [anon_sym_EQ] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_DASH_GT] = ACTIONS(588), - [anon_sym_TILDE_GT] = ACTIONS(588), - [anon_sym_LT_DASH] = ACTIONS(588), - [anon_sym_LT_TILDE] = ACTIONS(588), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_DASH_GT] = ACTIONS(590), + [anon_sym_TILDE_GT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(590), + [anon_sym_LT_TILDE] = ACTIONS(590), [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_AT] = ACTIONS(588), + [anon_sym_AT_AT] = ACTIONS(590), [anon_sym_BANG] = ACTIONS(592), [anon_sym_DASH] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), [anon_sym_in] = ACTIONS(592), - [anon_sym_EQ_TILDE] = ACTIONS(588), - [anon_sym_BANG_TILDE] = ACTIONS(588), + [anon_sym_EQ_TILDE] = ACTIONS(590), + [anon_sym_BANG_TILDE] = ACTIONS(590), [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(590), [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(590), [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(590), [anon_sym_and] = ACTIONS(592), [anon_sym_or] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), [anon_sym_if] = ACTIONS(592), [anon_sym_unless] = ACTIONS(592), [anon_sym_case] = ACTIONS(592), - [anon_sym_LT_PIPE] = ACTIONS(588), - [anon_sym_LT_LT_PIPE] = ACTIONS(588), + [anon_sym_LT_PIPE] = ACTIONS(590), + [anon_sym_LT_LT_PIPE] = ACTIONS(590), [anon_sym_define] = ACTIONS(592), [anon_sym_plan] = ACTIONS(592), [anon_sym_apply] = ACTIONS(592), @@ -22822,12 +22811,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_node] = ACTIONS(592), [anon_sym_function] = ACTIONS(592), [anon_sym_type] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(590), [anon_sym_private] = ACTIONS(592), [anon_sym_attr] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_AT_LPAREN] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_AT_LPAREN] = ACTIONS(590), [anon_sym_POUND] = ACTIONS(3), [anon_sym_LBRACK2] = ACTIONS(592), [anon_sym_default] = ACTIONS(592), @@ -22842,15 +22831,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_warning] = ACTIONS(592), [anon_sym_err] = ACTIONS(592), [anon_sym_fail] = ACTIONS(592), - [sym_type] = ACTIONS(588), + [sym_type] = ACTIONS(590), [sym_name] = ACTIONS(592), - [sym_number] = ACTIONS(588), + [sym_number] = ACTIONS(590), [sym_true] = ACTIONS(592), [sym_false] = ACTIONS(592), - [sym_qmark] = ACTIONS(588), + [sym_qmark] = ACTIONS(590), }, - [179] = { - [sym_comment] = STATE(179), + [177] = { + [sym_comment] = STATE(177), [ts_builtin_sym_end] = ACTIONS(594), [anon_sym_SEMI] = ACTIONS(594), [anon_sym_LBRACE] = ACTIONS(594), @@ -22926,8 +22915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(596), [sym_qmark] = ACTIONS(594), }, - [180] = { - [sym_comment] = STATE(180), + [178] = { + [sym_comment] = STATE(178), [ts_builtin_sym_end] = ACTIONS(598), [anon_sym_SEMI] = ACTIONS(598), [anon_sym_LBRACE] = ACTIONS(598), @@ -23003,8 +22992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(600), [sym_qmark] = ACTIONS(598), }, - [181] = { - [sym_comment] = STATE(181), + [179] = { + [sym_comment] = STATE(179), [ts_builtin_sym_end] = ACTIONS(602), [anon_sym_SEMI] = ACTIONS(602), [anon_sym_LBRACE] = ACTIONS(602), @@ -23080,8 +23069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(604), [sym_qmark] = ACTIONS(602), }, - [182] = { - [sym_comment] = STATE(182), + [180] = { + [sym_comment] = STATE(180), [ts_builtin_sym_end] = ACTIONS(606), [anon_sym_SEMI] = ACTIONS(606), [anon_sym_LBRACE] = ACTIONS(606), @@ -23157,8 +23146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(608), [sym_qmark] = ACTIONS(606), }, - [183] = { - [sym_comment] = STATE(183), + [181] = { + [sym_comment] = STATE(181), [ts_builtin_sym_end] = ACTIONS(610), [anon_sym_SEMI] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(610), @@ -23234,85 +23223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(612), [sym_qmark] = ACTIONS(610), }, - [184] = { - [sym_comment] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_DASH_GT] = ACTIONS(588), - [anon_sym_TILDE_GT] = ACTIONS(588), - [anon_sym_LT_DASH] = ACTIONS(588), - [anon_sym_LT_TILDE] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_AT] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_in] = ACTIONS(592), - [anon_sym_EQ_TILDE] = ACTIONS(588), - [anon_sym_BANG_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_and] = ACTIONS(592), - [anon_sym_or] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_if] = ACTIONS(592), - [anon_sym_unless] = ACTIONS(592), - [anon_sym_case] = ACTIONS(592), - [anon_sym_LT_PIPE] = ACTIONS(588), - [anon_sym_LT_LT_PIPE] = ACTIONS(588), - [anon_sym_define] = ACTIONS(592), - [anon_sym_plan] = ACTIONS(592), - [anon_sym_apply] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_node] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_private] = ACTIONS(592), - [anon_sym_attr] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_AT_LPAREN] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_undef] = ACTIONS(592), - [anon_sym_include] = ACTIONS(592), - [anon_sym_require] = ACTIONS(592), - [anon_sym_contain] = ACTIONS(592), - [anon_sym_tag] = ACTIONS(592), - [anon_sym_debug] = ACTIONS(592), - [anon_sym_info] = ACTIONS(592), - [anon_sym_notice] = ACTIONS(592), - [anon_sym_warning] = ACTIONS(592), - [anon_sym_err] = ACTIONS(592), - [anon_sym_fail] = ACTIONS(592), - [sym_type] = ACTIONS(588), - [sym_name] = ACTIONS(592), - [sym_number] = ACTIONS(588), - [sym_true] = ACTIONS(592), - [sym_false] = ACTIONS(592), - [sym_qmark] = ACTIONS(588), - }, - [185] = { - [sym_comment] = STATE(185), + [182] = { + [sym_comment] = STATE(182), [ts_builtin_sym_end] = ACTIONS(614), [anon_sym_SEMI] = ACTIONS(614), [anon_sym_LBRACE] = ACTIONS(614), @@ -23388,8 +23300,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(616), [sym_qmark] = ACTIONS(614), }, - [186] = { - [sym_comment] = STATE(186), + [183] = { + [sym_comment] = STATE(183), [ts_builtin_sym_end] = ACTIONS(618), [anon_sym_SEMI] = ACTIONS(618), [anon_sym_LBRACE] = ACTIONS(618), @@ -23465,8 +23377,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(620), [sym_qmark] = ACTIONS(618), }, - [187] = { - [sym_comment] = STATE(187), + [184] = { + [sym__assignment] = STATE(1225), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_collection_entry_keyword] = STATE(1222), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(184), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(143), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(147), + [anon_sym_type] = ACTIONS(149), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), + }, + [185] = { + [sym_comment] = STATE(185), [ts_builtin_sym_end] = ACTIONS(622), [anon_sym_SEMI] = ACTIONS(622), [anon_sym_LBRACE] = ACTIONS(622), @@ -23542,8 +23531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(624), [sym_qmark] = ACTIONS(622), }, - [188] = { - [sym_comment] = STATE(188), + [186] = { + [sym_comment] = STATE(186), [ts_builtin_sym_end] = ACTIONS(626), [anon_sym_SEMI] = ACTIONS(626), [anon_sym_LBRACE] = ACTIONS(626), @@ -23619,8 +23608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(628), [sym_qmark] = ACTIONS(626), }, - [189] = { - [sym_comment] = STATE(189), + [187] = { + [sym_comment] = STATE(187), [ts_builtin_sym_end] = ACTIONS(630), [anon_sym_SEMI] = ACTIONS(630), [anon_sym_LBRACE] = ACTIONS(630), @@ -23696,1625 +23685,1702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(632), [sym_qmark] = ACTIONS(630), }, - [190] = { - [sym_comment] = STATE(190), + [188] = { + [sym_comment] = STATE(188), [ts_builtin_sym_end] = ACTIONS(634), [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_LBRACE] = ACTIONS(636), [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_COMMA] = ACTIONS(634), [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(636), + [anon_sym_EQ] = ACTIONS(638), [anon_sym_PLUS_EQ] = ACTIONS(634), [anon_sym_DASH_EQ] = ACTIONS(634), [anon_sym_DASH_GT] = ACTIONS(634), [anon_sym_TILDE_GT] = ACTIONS(634), [anon_sym_LT_DASH] = ACTIONS(634), [anon_sym_LT_TILDE] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(638), [anon_sym_AT_AT] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(638), [anon_sym_STAR] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), + [anon_sym_in] = ACTIONS(638), [anon_sym_EQ_TILDE] = ACTIONS(634), [anon_sym_BANG_TILDE] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(638), [anon_sym_SLASH] = ACTIONS(634), [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(636), + [anon_sym_LT_LT] = ACTIONS(638), [anon_sym_GT_GT] = ACTIONS(634), [anon_sym_BANG_EQ] = ACTIONS(634), [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), + [anon_sym_GT] = ACTIONS(638), [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), + [anon_sym_LT] = ACTIONS(638), [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(636), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), [anon_sym_LBRACK] = ACTIONS(634), [anon_sym_DOT] = ACTIONS(634), - [anon_sym_if] = ACTIONS(636), - [anon_sym_unless] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), + [anon_sym_if] = ACTIONS(638), + [anon_sym_unless] = ACTIONS(638), + [anon_sym_case] = ACTIONS(638), [anon_sym_LT_PIPE] = ACTIONS(634), [anon_sym_LT_LT_PIPE] = ACTIONS(634), - [anon_sym_define] = ACTIONS(636), - [anon_sym_plan] = ACTIONS(636), - [anon_sym_apply] = ACTIONS(636), - [anon_sym_class] = ACTIONS(636), - [anon_sym_node] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), + [anon_sym_define] = ACTIONS(638), + [anon_sym_plan] = ACTIONS(638), + [anon_sym_apply] = ACTIONS(638), + [anon_sym_class] = ACTIONS(638), + [anon_sym_node] = ACTIONS(638), + [anon_sym_function] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_private] = ACTIONS(636), - [anon_sym_attr] = ACTIONS(636), + [anon_sym_private] = ACTIONS(638), + [anon_sym_attr] = ACTIONS(638), [anon_sym_SQUOTE] = ACTIONS(634), [anon_sym_DQUOTE] = ACTIONS(634), [anon_sym_AT_LPAREN] = ACTIONS(634), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_undef] = ACTIONS(636), - [anon_sym_include] = ACTIONS(636), - [anon_sym_require] = ACTIONS(636), - [anon_sym_contain] = ACTIONS(636), - [anon_sym_tag] = ACTIONS(636), - [anon_sym_debug] = ACTIONS(636), - [anon_sym_info] = ACTIONS(636), - [anon_sym_notice] = ACTIONS(636), - [anon_sym_warning] = ACTIONS(636), - [anon_sym_err] = ACTIONS(636), - [anon_sym_fail] = ACTIONS(636), + [anon_sym_LBRACK2] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_undef] = ACTIONS(638), + [anon_sym_include] = ACTIONS(638), + [anon_sym_require] = ACTIONS(638), + [anon_sym_contain] = ACTIONS(638), + [anon_sym_tag] = ACTIONS(638), + [anon_sym_debug] = ACTIONS(638), + [anon_sym_info] = ACTIONS(638), + [anon_sym_notice] = ACTIONS(638), + [anon_sym_warning] = ACTIONS(638), + [anon_sym_err] = ACTIONS(638), + [anon_sym_fail] = ACTIONS(638), [sym_type] = ACTIONS(634), - [sym_name] = ACTIONS(636), + [sym_name] = ACTIONS(638), [sym_number] = ACTIONS(634), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), [sym_qmark] = ACTIONS(634), }, + [189] = { + [sym_comment] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(640), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_TILDE_GT] = ACTIONS(640), + [anon_sym_LT_DASH] = ACTIONS(640), + [anon_sym_LT_TILDE] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_AT_AT] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_in] = ACTIONS(642), + [anon_sym_EQ_TILDE] = ACTIONS(640), + [anon_sym_BANG_TILDE] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(640), + [anon_sym_PERCENT] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_and] = ACTIONS(642), + [anon_sym_or] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(640), + [anon_sym_if] = ACTIONS(642), + [anon_sym_unless] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_LT_PIPE] = ACTIONS(640), + [anon_sym_LT_LT_PIPE] = ACTIONS(640), + [anon_sym_define] = ACTIONS(642), + [anon_sym_plan] = ACTIONS(642), + [anon_sym_apply] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_node] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_private] = ACTIONS(642), + [anon_sym_attr] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_AT_LPAREN] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_undef] = ACTIONS(642), + [anon_sym_include] = ACTIONS(642), + [anon_sym_require] = ACTIONS(642), + [anon_sym_contain] = ACTIONS(642), + [anon_sym_tag] = ACTIONS(642), + [anon_sym_debug] = ACTIONS(642), + [anon_sym_info] = ACTIONS(642), + [anon_sym_notice] = ACTIONS(642), + [anon_sym_warning] = ACTIONS(642), + [anon_sym_err] = ACTIONS(642), + [anon_sym_fail] = ACTIONS(642), + [sym_type] = ACTIONS(640), + [sym_name] = ACTIONS(642), + [sym_number] = ACTIONS(640), + [sym_true] = ACTIONS(642), + [sym_false] = ACTIONS(642), + [sym_qmark] = ACTIONS(640), + }, + [190] = { + [sym_comment] = STATE(190), + [ts_builtin_sym_end] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_DASH_GT] = ACTIONS(644), + [anon_sym_TILDE_GT] = ACTIONS(644), + [anon_sym_LT_DASH] = ACTIONS(644), + [anon_sym_LT_TILDE] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_AT_AT] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_in] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PERCENT] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_and] = ACTIONS(646), + [anon_sym_or] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_unless] = ACTIONS(646), + [anon_sym_case] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_LT_LT_PIPE] = ACTIONS(644), + [anon_sym_define] = ACTIONS(646), + [anon_sym_plan] = ACTIONS(646), + [anon_sym_apply] = ACTIONS(646), + [anon_sym_class] = ACTIONS(646), + [anon_sym_node] = ACTIONS(646), + [anon_sym_function] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_private] = ACTIONS(646), + [anon_sym_attr] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE] = ACTIONS(644), + [anon_sym_AT_LPAREN] = ACTIONS(644), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_undef] = ACTIONS(646), + [anon_sym_include] = ACTIONS(646), + [anon_sym_require] = ACTIONS(646), + [anon_sym_contain] = ACTIONS(646), + [anon_sym_tag] = ACTIONS(646), + [anon_sym_debug] = ACTIONS(646), + [anon_sym_info] = ACTIONS(646), + [anon_sym_notice] = ACTIONS(646), + [anon_sym_warning] = ACTIONS(646), + [anon_sym_err] = ACTIONS(646), + [anon_sym_fail] = ACTIONS(646), + [sym_type] = ACTIONS(644), + [sym_name] = ACTIONS(646), + [sym_number] = ACTIONS(644), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_qmark] = ACTIONS(644), + }, [191] = { [sym_comment] = STATE(191), - [ts_builtin_sym_end] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(640), - [anon_sym_PLUS_EQ] = ACTIONS(638), - [anon_sym_DASH_EQ] = ACTIONS(638), - [anon_sym_DASH_GT] = ACTIONS(638), - [anon_sym_TILDE_GT] = ACTIONS(638), - [anon_sym_LT_DASH] = ACTIONS(638), - [anon_sym_LT_TILDE] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [anon_sym_AT_AT] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_in] = ACTIONS(640), - [anon_sym_EQ_TILDE] = ACTIONS(638), - [anon_sym_BANG_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_BANG_EQ] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(638), - [anon_sym_and] = ACTIONS(640), - [anon_sym_or] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_DOT] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_unless] = ACTIONS(640), - [anon_sym_case] = ACTIONS(640), - [anon_sym_LT_PIPE] = ACTIONS(638), - [anon_sym_LT_LT_PIPE] = ACTIONS(638), - [anon_sym_define] = ACTIONS(640), - [anon_sym_plan] = ACTIONS(640), - [anon_sym_apply] = ACTIONS(640), - [anon_sym_class] = ACTIONS(640), - [anon_sym_node] = ACTIONS(640), - [anon_sym_function] = ACTIONS(640), - [anon_sym_type] = ACTIONS(640), - [anon_sym_DOLLAR] = ACTIONS(638), - [anon_sym_private] = ACTIONS(640), - [anon_sym_attr] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_AT_LPAREN] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_undef] = ACTIONS(640), - [anon_sym_include] = ACTIONS(640), - [anon_sym_require] = ACTIONS(640), - [anon_sym_contain] = ACTIONS(640), - [anon_sym_tag] = ACTIONS(640), - [anon_sym_debug] = ACTIONS(640), - [anon_sym_info] = ACTIONS(640), - [anon_sym_notice] = ACTIONS(640), - [anon_sym_warning] = ACTIONS(640), - [anon_sym_err] = ACTIONS(640), - [anon_sym_fail] = ACTIONS(640), - [sym_type] = ACTIONS(638), - [sym_name] = ACTIONS(640), - [sym_number] = ACTIONS(638), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_qmark] = ACTIONS(638), + [ts_builtin_sym_end] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_DASH_GT] = ACTIONS(648), + [anon_sym_TILDE_GT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(648), + [anon_sym_LT_TILDE] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_AT_AT] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_in] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(648), + [anon_sym_BANG_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(648), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(648), + [anon_sym_if] = ACTIONS(650), + [anon_sym_unless] = ACTIONS(650), + [anon_sym_case] = ACTIONS(650), + [anon_sym_LT_PIPE] = ACTIONS(648), + [anon_sym_LT_LT_PIPE] = ACTIONS(648), + [anon_sym_define] = ACTIONS(650), + [anon_sym_plan] = ACTIONS(650), + [anon_sym_apply] = ACTIONS(650), + [anon_sym_class] = ACTIONS(650), + [anon_sym_node] = ACTIONS(650), + [anon_sym_function] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_private] = ACTIONS(650), + [anon_sym_attr] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_AT_LPAREN] = ACTIONS(648), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_undef] = ACTIONS(650), + [anon_sym_include] = ACTIONS(650), + [anon_sym_require] = ACTIONS(650), + [anon_sym_contain] = ACTIONS(650), + [anon_sym_tag] = ACTIONS(650), + [anon_sym_debug] = ACTIONS(650), + [anon_sym_info] = ACTIONS(650), + [anon_sym_notice] = ACTIONS(650), + [anon_sym_warning] = ACTIONS(650), + [anon_sym_err] = ACTIONS(650), + [anon_sym_fail] = ACTIONS(650), + [sym_type] = ACTIONS(648), + [sym_name] = ACTIONS(650), + [sym_number] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_qmark] = ACTIONS(648), }, [192] = { [sym_comment] = STATE(192), - [ts_builtin_sym_end] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(644), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_DASH_GT] = ACTIONS(642), - [anon_sym_TILDE_GT] = ACTIONS(642), - [anon_sym_LT_DASH] = ACTIONS(642), - [anon_sym_LT_TILDE] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_AT_AT] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [anon_sym_EQ_TILDE] = ACTIONS(642), - [anon_sym_BANG_TILDE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_and] = ACTIONS(644), - [anon_sym_or] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(644), - [anon_sym_unless] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_LT_PIPE] = ACTIONS(642), - [anon_sym_LT_LT_PIPE] = ACTIONS(642), - [anon_sym_define] = ACTIONS(644), - [anon_sym_plan] = ACTIONS(644), - [anon_sym_apply] = ACTIONS(644), - [anon_sym_class] = ACTIONS(644), - [anon_sym_node] = ACTIONS(644), - [anon_sym_function] = ACTIONS(644), - [anon_sym_type] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_private] = ACTIONS(644), - [anon_sym_attr] = ACTIONS(644), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_AT_LPAREN] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_undef] = ACTIONS(644), - [anon_sym_include] = ACTIONS(644), - [anon_sym_require] = ACTIONS(644), - [anon_sym_contain] = ACTIONS(644), - [anon_sym_tag] = ACTIONS(644), - [anon_sym_debug] = ACTIONS(644), - [anon_sym_info] = ACTIONS(644), - [anon_sym_notice] = ACTIONS(644), - [anon_sym_warning] = ACTIONS(644), - [anon_sym_err] = ACTIONS(644), - [anon_sym_fail] = ACTIONS(644), - [sym_type] = ACTIONS(642), - [sym_name] = ACTIONS(644), - [sym_number] = ACTIONS(642), - [sym_true] = ACTIONS(644), - [sym_false] = ACTIONS(644), - [sym_qmark] = ACTIONS(642), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_DASH_GT] = ACTIONS(652), + [anon_sym_TILDE_GT] = ACTIONS(652), + [anon_sym_LT_DASH] = ACTIONS(652), + [anon_sym_LT_TILDE] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_AT_AT] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_in] = ACTIONS(654), + [anon_sym_EQ_TILDE] = ACTIONS(652), + [anon_sym_BANG_TILDE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_unless] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LT_PIPE] = ACTIONS(652), + [anon_sym_LT_LT_PIPE] = ACTIONS(652), + [anon_sym_define] = ACTIONS(654), + [anon_sym_plan] = ACTIONS(654), + [anon_sym_apply] = ACTIONS(654), + [anon_sym_class] = ACTIONS(654), + [anon_sym_node] = ACTIONS(654), + [anon_sym_function] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_private] = ACTIONS(654), + [anon_sym_attr] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_AT_LPAREN] = ACTIONS(652), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_undef] = ACTIONS(654), + [anon_sym_include] = ACTIONS(654), + [anon_sym_require] = ACTIONS(654), + [anon_sym_contain] = ACTIONS(654), + [anon_sym_tag] = ACTIONS(654), + [anon_sym_debug] = ACTIONS(654), + [anon_sym_info] = ACTIONS(654), + [anon_sym_notice] = ACTIONS(654), + [anon_sym_warning] = ACTIONS(654), + [anon_sym_err] = ACTIONS(654), + [anon_sym_fail] = ACTIONS(654), + [sym_type] = ACTIONS(652), + [sym_name] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_qmark] = ACTIONS(652), }, [193] = { [sym_comment] = STATE(193), - [ts_builtin_sym_end] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(648), - [anon_sym_PLUS_EQ] = ACTIONS(646), - [anon_sym_DASH_EQ] = ACTIONS(646), - [anon_sym_DASH_GT] = ACTIONS(646), - [anon_sym_TILDE_GT] = ACTIONS(646), - [anon_sym_LT_DASH] = ACTIONS(646), - [anon_sym_LT_TILDE] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_AT_AT] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_in] = ACTIONS(648), - [anon_sym_EQ_TILDE] = ACTIONS(646), - [anon_sym_BANG_TILDE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_and] = ACTIONS(648), - [anon_sym_or] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_unless] = ACTIONS(648), - [anon_sym_case] = ACTIONS(648), - [anon_sym_LT_PIPE] = ACTIONS(646), - [anon_sym_LT_LT_PIPE] = ACTIONS(646), - [anon_sym_define] = ACTIONS(648), - [anon_sym_plan] = ACTIONS(648), - [anon_sym_apply] = ACTIONS(648), - [anon_sym_class] = ACTIONS(648), - [anon_sym_node] = ACTIONS(648), - [anon_sym_function] = ACTIONS(648), - [anon_sym_type] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_private] = ACTIONS(648), - [anon_sym_attr] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(646), - [anon_sym_AT_LPAREN] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(648), - [anon_sym_default] = ACTIONS(648), - [anon_sym_undef] = ACTIONS(648), - [anon_sym_include] = ACTIONS(648), - [anon_sym_require] = ACTIONS(648), - [anon_sym_contain] = ACTIONS(648), - [anon_sym_tag] = ACTIONS(648), - [anon_sym_debug] = ACTIONS(648), - [anon_sym_info] = ACTIONS(648), - [anon_sym_notice] = ACTIONS(648), - [anon_sym_warning] = ACTIONS(648), - [anon_sym_err] = ACTIONS(648), - [anon_sym_fail] = ACTIONS(648), - [sym_type] = ACTIONS(646), - [sym_name] = ACTIONS(648), - [sym_number] = ACTIONS(646), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_qmark] = ACTIONS(646), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(658), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_DASH_GT] = ACTIONS(656), + [anon_sym_TILDE_GT] = ACTIONS(656), + [anon_sym_LT_DASH] = ACTIONS(656), + [anon_sym_LT_TILDE] = ACTIONS(656), + [anon_sym_AT] = ACTIONS(658), + [anon_sym_AT_AT] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_in] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(656), + [anon_sym_BANG_TILDE] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_SLASH] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_if] = ACTIONS(658), + [anon_sym_unless] = ACTIONS(658), + [anon_sym_case] = ACTIONS(658), + [anon_sym_LT_PIPE] = ACTIONS(656), + [anon_sym_LT_LT_PIPE] = ACTIONS(656), + [anon_sym_define] = ACTIONS(658), + [anon_sym_plan] = ACTIONS(658), + [anon_sym_apply] = ACTIONS(658), + [anon_sym_class] = ACTIONS(658), + [anon_sym_node] = ACTIONS(658), + [anon_sym_function] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_DOLLAR] = ACTIONS(656), + [anon_sym_private] = ACTIONS(658), + [anon_sym_attr] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_AT_LPAREN] = ACTIONS(656), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_undef] = ACTIONS(658), + [anon_sym_include] = ACTIONS(658), + [anon_sym_require] = ACTIONS(658), + [anon_sym_contain] = ACTIONS(658), + [anon_sym_tag] = ACTIONS(658), + [anon_sym_debug] = ACTIONS(658), + [anon_sym_info] = ACTIONS(658), + [anon_sym_notice] = ACTIONS(658), + [anon_sym_warning] = ACTIONS(658), + [anon_sym_err] = ACTIONS(658), + [anon_sym_fail] = ACTIONS(658), + [sym_type] = ACTIONS(656), + [sym_name] = ACTIONS(658), + [sym_number] = ACTIONS(656), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_qmark] = ACTIONS(656), }, [194] = { [sym_comment] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_PLUS_EQ] = ACTIONS(650), - [anon_sym_DASH_EQ] = ACTIONS(650), - [anon_sym_DASH_GT] = ACTIONS(650), - [anon_sym_TILDE_GT] = ACTIONS(650), - [anon_sym_LT_DASH] = ACTIONS(650), - [anon_sym_LT_TILDE] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_in] = ACTIONS(652), - [anon_sym_EQ_TILDE] = ACTIONS(650), - [anon_sym_BANG_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_BANG_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(650), - [anon_sym_and] = ACTIONS(652), - [anon_sym_or] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_unless] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LT_PIPE] = ACTIONS(650), - [anon_sym_LT_LT_PIPE] = ACTIONS(650), - [anon_sym_define] = ACTIONS(652), - [anon_sym_plan] = ACTIONS(652), - [anon_sym_apply] = ACTIONS(652), - [anon_sym_class] = ACTIONS(652), - [anon_sym_node] = ACTIONS(652), - [anon_sym_function] = ACTIONS(652), - [anon_sym_type] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_private] = ACTIONS(652), - [anon_sym_attr] = ACTIONS(652), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_AT_LPAREN] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_undef] = ACTIONS(652), - [anon_sym_include] = ACTIONS(652), - [anon_sym_require] = ACTIONS(652), - [anon_sym_contain] = ACTIONS(652), - [anon_sym_tag] = ACTIONS(652), - [anon_sym_debug] = ACTIONS(652), - [anon_sym_info] = ACTIONS(652), - [anon_sym_notice] = ACTIONS(652), - [anon_sym_warning] = ACTIONS(652), - [anon_sym_err] = ACTIONS(652), - [anon_sym_fail] = ACTIONS(652), - [sym_type] = ACTIONS(650), - [sym_name] = ACTIONS(652), - [sym_number] = ACTIONS(650), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_qmark] = ACTIONS(650), + [ts_builtin_sym_end] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_DASH_EQ] = ACTIONS(660), + [anon_sym_DASH_GT] = ACTIONS(660), + [anon_sym_TILDE_GT] = ACTIONS(660), + [anon_sym_LT_DASH] = ACTIONS(660), + [anon_sym_LT_TILDE] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_AT_AT] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_in] = ACTIONS(662), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_BANG_TILDE] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_and] = ACTIONS(662), + [anon_sym_or] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_if] = ACTIONS(662), + [anon_sym_unless] = ACTIONS(662), + [anon_sym_case] = ACTIONS(662), + [anon_sym_LT_PIPE] = ACTIONS(660), + [anon_sym_LT_LT_PIPE] = ACTIONS(660), + [anon_sym_define] = ACTIONS(662), + [anon_sym_plan] = ACTIONS(662), + [anon_sym_apply] = ACTIONS(662), + [anon_sym_class] = ACTIONS(662), + [anon_sym_node] = ACTIONS(662), + [anon_sym_function] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(660), + [anon_sym_private] = ACTIONS(662), + [anon_sym_attr] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(660), + [anon_sym_AT_LPAREN] = ACTIONS(660), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_undef] = ACTIONS(662), + [anon_sym_include] = ACTIONS(662), + [anon_sym_require] = ACTIONS(662), + [anon_sym_contain] = ACTIONS(662), + [anon_sym_tag] = ACTIONS(662), + [anon_sym_debug] = ACTIONS(662), + [anon_sym_info] = ACTIONS(662), + [anon_sym_notice] = ACTIONS(662), + [anon_sym_warning] = ACTIONS(662), + [anon_sym_err] = ACTIONS(662), + [anon_sym_fail] = ACTIONS(662), + [sym_type] = ACTIONS(660), + [sym_name] = ACTIONS(662), + [sym_number] = ACTIONS(660), + [sym_true] = ACTIONS(662), + [sym_false] = ACTIONS(662), + [sym_qmark] = ACTIONS(660), }, [195] = { [sym_comment] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_DASH_GT] = ACTIONS(436), - [anon_sym_TILDE_GT] = ACTIONS(436), - [anon_sym_LT_DASH] = ACTIONS(436), - [anon_sym_LT_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), + [ts_builtin_sym_end] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_PLUS_EQ] = ACTIONS(664), + [anon_sym_DASH_EQ] = ACTIONS(664), + [anon_sym_DASH_GT] = ACTIONS(664), + [anon_sym_TILDE_GT] = ACTIONS(664), + [anon_sym_LT_DASH] = ACTIONS(664), + [anon_sym_LT_TILDE] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(666), + [anon_sym_AT_AT] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_in] = ACTIONS(666), + [anon_sym_EQ_TILDE] = ACTIONS(664), + [anon_sym_BANG_TILDE] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(666), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_and] = ACTIONS(666), + [anon_sym_or] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(664), + [anon_sym_if] = ACTIONS(666), + [anon_sym_unless] = ACTIONS(666), + [anon_sym_case] = ACTIONS(666), + [anon_sym_LT_PIPE] = ACTIONS(664), + [anon_sym_LT_LT_PIPE] = ACTIONS(664), + [anon_sym_define] = ACTIONS(666), + [anon_sym_plan] = ACTIONS(666), + [anon_sym_apply] = ACTIONS(666), + [anon_sym_class] = ACTIONS(666), + [anon_sym_node] = ACTIONS(666), + [anon_sym_function] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_DOLLAR] = ACTIONS(664), + [anon_sym_private] = ACTIONS(666), + [anon_sym_attr] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_LPAREN] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_undef] = ACTIONS(666), + [anon_sym_include] = ACTIONS(666), + [anon_sym_require] = ACTIONS(666), + [anon_sym_contain] = ACTIONS(666), + [anon_sym_tag] = ACTIONS(666), + [anon_sym_debug] = ACTIONS(666), + [anon_sym_info] = ACTIONS(666), + [anon_sym_notice] = ACTIONS(666), + [anon_sym_warning] = ACTIONS(666), + [anon_sym_err] = ACTIONS(666), + [anon_sym_fail] = ACTIONS(666), + [sym_type] = ACTIONS(664), + [sym_name] = ACTIONS(666), + [sym_number] = ACTIONS(664), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_qmark] = ACTIONS(664), }, [196] = { [sym_comment] = STATE(196), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(440), - [anon_sym_DASH_EQ] = ACTIONS(440), - [anon_sym_DASH_GT] = ACTIONS(440), - [anon_sym_TILDE_GT] = ACTIONS(440), - [anon_sym_LT_DASH] = ACTIONS(440), - [anon_sym_LT_TILDE] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), + [ts_builtin_sym_end] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_EQ] = ACTIONS(670), + [anon_sym_PLUS_EQ] = ACTIONS(668), + [anon_sym_DASH_EQ] = ACTIONS(668), + [anon_sym_DASH_GT] = ACTIONS(668), + [anon_sym_TILDE_GT] = ACTIONS(668), + [anon_sym_LT_DASH] = ACTIONS(668), + [anon_sym_LT_TILDE] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(670), + [anon_sym_AT_AT] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(670), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_in] = ACTIONS(670), + [anon_sym_EQ_TILDE] = ACTIONS(668), + [anon_sym_BANG_TILDE] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(670), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(670), + [anon_sym_unless] = ACTIONS(670), + [anon_sym_case] = ACTIONS(670), + [anon_sym_LT_PIPE] = ACTIONS(668), + [anon_sym_LT_LT_PIPE] = ACTIONS(668), + [anon_sym_define] = ACTIONS(670), + [anon_sym_plan] = ACTIONS(670), + [anon_sym_apply] = ACTIONS(670), + [anon_sym_class] = ACTIONS(670), + [anon_sym_node] = ACTIONS(670), + [anon_sym_function] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_DOLLAR] = ACTIONS(668), + [anon_sym_private] = ACTIONS(670), + [anon_sym_attr] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_AT_LPAREN] = ACTIONS(668), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_undef] = ACTIONS(670), + [anon_sym_include] = ACTIONS(670), + [anon_sym_require] = ACTIONS(670), + [anon_sym_contain] = ACTIONS(670), + [anon_sym_tag] = ACTIONS(670), + [anon_sym_debug] = ACTIONS(670), + [anon_sym_info] = ACTIONS(670), + [anon_sym_notice] = ACTIONS(670), + [anon_sym_warning] = ACTIONS(670), + [anon_sym_err] = ACTIONS(670), + [anon_sym_fail] = ACTIONS(670), + [sym_type] = ACTIONS(668), + [sym_name] = ACTIONS(670), + [sym_number] = ACTIONS(668), + [sym_true] = ACTIONS(670), + [sym_false] = ACTIONS(670), + [sym_qmark] = ACTIONS(668), }, [197] = { [sym_comment] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(654), - [anon_sym_DASH_EQ] = ACTIONS(654), - [anon_sym_DASH_GT] = ACTIONS(654), - [anon_sym_TILDE_GT] = ACTIONS(654), - [anon_sym_LT_DASH] = ACTIONS(654), - [anon_sym_LT_TILDE] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(656), - [anon_sym_AT_AT] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_in] = ACTIONS(656), - [anon_sym_EQ_TILDE] = ACTIONS(654), - [anon_sym_BANG_TILDE] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_and] = ACTIONS(656), - [anon_sym_or] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_if] = ACTIONS(656), - [anon_sym_unless] = ACTIONS(656), - [anon_sym_case] = ACTIONS(656), - [anon_sym_LT_PIPE] = ACTIONS(654), - [anon_sym_LT_LT_PIPE] = ACTIONS(654), - [anon_sym_define] = ACTIONS(656), - [anon_sym_plan] = ACTIONS(656), - [anon_sym_apply] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_node] = ACTIONS(656), - [anon_sym_function] = ACTIONS(656), - [anon_sym_type] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_private] = ACTIONS(656), - [anon_sym_attr] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_AT_LPAREN] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(656), - [anon_sym_default] = ACTIONS(656), - [anon_sym_undef] = ACTIONS(656), - [anon_sym_include] = ACTIONS(656), - [anon_sym_require] = ACTIONS(656), - [anon_sym_contain] = ACTIONS(656), - [anon_sym_tag] = ACTIONS(656), - [anon_sym_debug] = ACTIONS(656), - [anon_sym_info] = ACTIONS(656), - [anon_sym_notice] = ACTIONS(656), - [anon_sym_warning] = ACTIONS(656), - [anon_sym_err] = ACTIONS(656), - [anon_sym_fail] = ACTIONS(656), - [sym_type] = ACTIONS(654), - [sym_name] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [sym_true] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_qmark] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_TILDE_GT] = ACTIONS(672), + [anon_sym_LT_DASH] = ACTIONS(672), + [anon_sym_LT_TILDE] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_AT_AT] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_in] = ACTIONS(674), + [anon_sym_EQ_TILDE] = ACTIONS(672), + [anon_sym_BANG_TILDE] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(672), + [anon_sym_PERCENT] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(672), + [anon_sym_if] = ACTIONS(674), + [anon_sym_unless] = ACTIONS(674), + [anon_sym_case] = ACTIONS(674), + [anon_sym_LT_PIPE] = ACTIONS(672), + [anon_sym_LT_LT_PIPE] = ACTIONS(672), + [anon_sym_define] = ACTIONS(674), + [anon_sym_plan] = ACTIONS(674), + [anon_sym_apply] = ACTIONS(674), + [anon_sym_class] = ACTIONS(674), + [anon_sym_node] = ACTIONS(674), + [anon_sym_function] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_private] = ACTIONS(674), + [anon_sym_attr] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_AT_LPAREN] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_undef] = ACTIONS(674), + [anon_sym_include] = ACTIONS(674), + [anon_sym_require] = ACTIONS(674), + [anon_sym_contain] = ACTIONS(674), + [anon_sym_tag] = ACTIONS(674), + [anon_sym_debug] = ACTIONS(674), + [anon_sym_info] = ACTIONS(674), + [anon_sym_notice] = ACTIONS(674), + [anon_sym_warning] = ACTIONS(674), + [anon_sym_err] = ACTIONS(674), + [anon_sym_fail] = ACTIONS(674), + [sym_type] = ACTIONS(672), + [sym_name] = ACTIONS(674), + [sym_number] = ACTIONS(672), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_qmark] = ACTIONS(672), }, [198] = { [sym_comment] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(658), - [anon_sym_DASH_EQ] = ACTIONS(658), - [anon_sym_DASH_GT] = ACTIONS(658), - [anon_sym_TILDE_GT] = ACTIONS(658), - [anon_sym_LT_DASH] = ACTIONS(658), - [anon_sym_LT_TILDE] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_AT_AT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_in] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(658), - [anon_sym_BANG_TILDE] = ACTIONS(658), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_BANG_EQ] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(658), - [anon_sym_and] = ACTIONS(660), - [anon_sym_or] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [anon_sym_if] = ACTIONS(660), - [anon_sym_unless] = ACTIONS(660), - [anon_sym_case] = ACTIONS(660), - [anon_sym_LT_PIPE] = ACTIONS(658), - [anon_sym_LT_LT_PIPE] = ACTIONS(658), - [anon_sym_define] = ACTIONS(660), - [anon_sym_plan] = ACTIONS(660), - [anon_sym_apply] = ACTIONS(660), - [anon_sym_class] = ACTIONS(660), - [anon_sym_node] = ACTIONS(660), - [anon_sym_function] = ACTIONS(660), - [anon_sym_type] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(658), - [anon_sym_private] = ACTIONS(660), - [anon_sym_attr] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_AT_LPAREN] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(660), - [anon_sym_default] = ACTIONS(660), - [anon_sym_undef] = ACTIONS(660), - [anon_sym_include] = ACTIONS(660), - [anon_sym_require] = ACTIONS(660), - [anon_sym_contain] = ACTIONS(660), - [anon_sym_tag] = ACTIONS(660), - [anon_sym_debug] = ACTIONS(660), - [anon_sym_info] = ACTIONS(660), - [anon_sym_notice] = ACTIONS(660), - [anon_sym_warning] = ACTIONS(660), - [anon_sym_err] = ACTIONS(660), - [anon_sym_fail] = ACTIONS(660), - [sym_type] = ACTIONS(658), - [sym_name] = ACTIONS(660), - [sym_number] = ACTIONS(658), - [sym_true] = ACTIONS(660), - [sym_false] = ACTIONS(660), - [sym_qmark] = ACTIONS(658), + [ts_builtin_sym_end] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(674), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [anon_sym_DASH_EQ] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_TILDE_GT] = ACTIONS(672), + [anon_sym_LT_DASH] = ACTIONS(672), + [anon_sym_LT_TILDE] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_AT_AT] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_in] = ACTIONS(674), + [anon_sym_EQ_TILDE] = ACTIONS(672), + [anon_sym_BANG_TILDE] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(674), + [anon_sym_SLASH] = ACTIONS(672), + [anon_sym_PERCENT] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(672), + [anon_sym_if] = ACTIONS(674), + [anon_sym_unless] = ACTIONS(674), + [anon_sym_case] = ACTIONS(674), + [anon_sym_LT_PIPE] = ACTIONS(672), + [anon_sym_LT_LT_PIPE] = ACTIONS(672), + [anon_sym_define] = ACTIONS(674), + [anon_sym_plan] = ACTIONS(674), + [anon_sym_apply] = ACTIONS(674), + [anon_sym_class] = ACTIONS(674), + [anon_sym_node] = ACTIONS(674), + [anon_sym_function] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_private] = ACTIONS(674), + [anon_sym_attr] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_AT_LPAREN] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_undef] = ACTIONS(674), + [anon_sym_include] = ACTIONS(674), + [anon_sym_require] = ACTIONS(674), + [anon_sym_contain] = ACTIONS(674), + [anon_sym_tag] = ACTIONS(674), + [anon_sym_debug] = ACTIONS(674), + [anon_sym_info] = ACTIONS(674), + [anon_sym_notice] = ACTIONS(674), + [anon_sym_warning] = ACTIONS(674), + [anon_sym_err] = ACTIONS(674), + [anon_sym_fail] = ACTIONS(674), + [sym_type] = ACTIONS(672), + [sym_name] = ACTIONS(674), + [sym_number] = ACTIONS(672), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_qmark] = ACTIONS(672), }, [199] = { [sym_comment] = STATE(199), - [ts_builtin_sym_end] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(662), - [anon_sym_DASH_EQ] = ACTIONS(662), - [anon_sym_DASH_GT] = ACTIONS(662), - [anon_sym_TILDE_GT] = ACTIONS(662), - [anon_sym_LT_DASH] = ACTIONS(662), - [anon_sym_LT_TILDE] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_AT_AT] = ACTIONS(662), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_in] = ACTIONS(664), - [anon_sym_EQ_TILDE] = ACTIONS(662), - [anon_sym_BANG_TILDE] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(664), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_LT_LT] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_and] = ACTIONS(664), - [anon_sym_or] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [anon_sym_if] = ACTIONS(664), - [anon_sym_unless] = ACTIONS(664), - [anon_sym_case] = ACTIONS(664), - [anon_sym_LT_PIPE] = ACTIONS(662), - [anon_sym_LT_LT_PIPE] = ACTIONS(662), - [anon_sym_define] = ACTIONS(664), - [anon_sym_plan] = ACTIONS(664), - [anon_sym_apply] = ACTIONS(664), - [anon_sym_class] = ACTIONS(664), - [anon_sym_node] = ACTIONS(664), - [anon_sym_function] = ACTIONS(664), - [anon_sym_type] = ACTIONS(664), - [anon_sym_DOLLAR] = ACTIONS(662), - [anon_sym_private] = ACTIONS(664), - [anon_sym_attr] = ACTIONS(664), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(662), - [anon_sym_AT_LPAREN] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(664), - [anon_sym_default] = ACTIONS(664), - [anon_sym_undef] = ACTIONS(664), - [anon_sym_include] = ACTIONS(664), - [anon_sym_require] = ACTIONS(664), - [anon_sym_contain] = ACTIONS(664), - [anon_sym_tag] = ACTIONS(664), - [anon_sym_debug] = ACTIONS(664), - [anon_sym_info] = ACTIONS(664), - [anon_sym_notice] = ACTIONS(664), - [anon_sym_warning] = ACTIONS(664), - [anon_sym_err] = ACTIONS(664), - [anon_sym_fail] = ACTIONS(664), - [sym_type] = ACTIONS(662), - [sym_name] = ACTIONS(664), - [sym_number] = ACTIONS(662), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_qmark] = ACTIONS(662), + [ts_builtin_sym_end] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(678), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_TILDE_GT] = ACTIONS(676), + [anon_sym_LT_DASH] = ACTIONS(676), + [anon_sym_LT_TILDE] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(678), + [anon_sym_AT_AT] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_in] = ACTIONS(678), + [anon_sym_EQ_TILDE] = ACTIONS(676), + [anon_sym_BANG_TILDE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(678), + [anon_sym_SLASH] = ACTIONS(676), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_and] = ACTIONS(678), + [anon_sym_or] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(678), + [anon_sym_unless] = ACTIONS(678), + [anon_sym_case] = ACTIONS(678), + [anon_sym_LT_PIPE] = ACTIONS(676), + [anon_sym_LT_LT_PIPE] = ACTIONS(676), + [anon_sym_define] = ACTIONS(678), + [anon_sym_plan] = ACTIONS(678), + [anon_sym_apply] = ACTIONS(678), + [anon_sym_class] = ACTIONS(678), + [anon_sym_node] = ACTIONS(678), + [anon_sym_function] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_private] = ACTIONS(678), + [anon_sym_attr] = ACTIONS(678), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_AT_LPAREN] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_undef] = ACTIONS(678), + [anon_sym_include] = ACTIONS(678), + [anon_sym_require] = ACTIONS(678), + [anon_sym_contain] = ACTIONS(678), + [anon_sym_tag] = ACTIONS(678), + [anon_sym_debug] = ACTIONS(678), + [anon_sym_info] = ACTIONS(678), + [anon_sym_notice] = ACTIONS(678), + [anon_sym_warning] = ACTIONS(678), + [anon_sym_err] = ACTIONS(678), + [anon_sym_fail] = ACTIONS(678), + [sym_type] = ACTIONS(676), + [sym_name] = ACTIONS(678), + [sym_number] = ACTIONS(676), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_qmark] = ACTIONS(676), }, [200] = { [sym_comment] = STATE(200), - [ts_builtin_sym_end] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(668), - [anon_sym_PLUS_EQ] = ACTIONS(666), - [anon_sym_DASH_EQ] = ACTIONS(666), - [anon_sym_DASH_GT] = ACTIONS(666), - [anon_sym_TILDE_GT] = ACTIONS(666), - [anon_sym_LT_DASH] = ACTIONS(666), - [anon_sym_LT_TILDE] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_AT] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_in] = ACTIONS(668), - [anon_sym_EQ_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(668), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_and] = ACTIONS(668), - [anon_sym_or] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_unless] = ACTIONS(668), - [anon_sym_case] = ACTIONS(668), - [anon_sym_LT_PIPE] = ACTIONS(666), - [anon_sym_LT_LT_PIPE] = ACTIONS(666), - [anon_sym_define] = ACTIONS(668), - [anon_sym_plan] = ACTIONS(668), - [anon_sym_apply] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_node] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_private] = ACTIONS(668), - [anon_sym_attr] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_AT_LPAREN] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(668), - [anon_sym_default] = ACTIONS(668), - [anon_sym_undef] = ACTIONS(668), - [anon_sym_include] = ACTIONS(668), - [anon_sym_require] = ACTIONS(668), - [anon_sym_contain] = ACTIONS(668), - [anon_sym_tag] = ACTIONS(668), - [anon_sym_debug] = ACTIONS(668), - [anon_sym_info] = ACTIONS(668), - [anon_sym_notice] = ACTIONS(668), - [anon_sym_warning] = ACTIONS(668), - [anon_sym_err] = ACTIONS(668), - [anon_sym_fail] = ACTIONS(668), - [sym_type] = ACTIONS(666), - [sym_name] = ACTIONS(668), - [sym_number] = ACTIONS(666), - [sym_true] = ACTIONS(668), - [sym_false] = ACTIONS(668), - [sym_qmark] = ACTIONS(666), + [ts_builtin_sym_end] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_TILDE_GT] = ACTIONS(680), + [anon_sym_LT_DASH] = ACTIONS(680), + [anon_sym_LT_TILDE] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(682), + [anon_sym_AT_AT] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_in] = ACTIONS(682), + [anon_sym_EQ_TILDE] = ACTIONS(680), + [anon_sym_BANG_TILDE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(680), + [anon_sym_PERCENT] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_and] = ACTIONS(682), + [anon_sym_or] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_if] = ACTIONS(682), + [anon_sym_unless] = ACTIONS(682), + [anon_sym_case] = ACTIONS(682), + [anon_sym_LT_PIPE] = ACTIONS(680), + [anon_sym_LT_LT_PIPE] = ACTIONS(680), + [anon_sym_define] = ACTIONS(682), + [anon_sym_plan] = ACTIONS(682), + [anon_sym_apply] = ACTIONS(682), + [anon_sym_class] = ACTIONS(682), + [anon_sym_node] = ACTIONS(682), + [anon_sym_function] = ACTIONS(682), + [anon_sym_type] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_private] = ACTIONS(682), + [anon_sym_attr] = ACTIONS(682), + [anon_sym_SQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_LPAREN] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(682), + [anon_sym_default] = ACTIONS(682), + [anon_sym_undef] = ACTIONS(682), + [anon_sym_include] = ACTIONS(682), + [anon_sym_require] = ACTIONS(682), + [anon_sym_contain] = ACTIONS(682), + [anon_sym_tag] = ACTIONS(682), + [anon_sym_debug] = ACTIONS(682), + [anon_sym_info] = ACTIONS(682), + [anon_sym_notice] = ACTIONS(682), + [anon_sym_warning] = ACTIONS(682), + [anon_sym_err] = ACTIONS(682), + [anon_sym_fail] = ACTIONS(682), + [sym_type] = ACTIONS(680), + [sym_name] = ACTIONS(682), + [sym_number] = ACTIONS(680), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_qmark] = ACTIONS(680), }, [201] = { [sym_comment] = STATE(201), - [ts_builtin_sym_end] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(672), - [anon_sym_PLUS_EQ] = ACTIONS(670), - [anon_sym_DASH_EQ] = ACTIONS(670), - [anon_sym_DASH_GT] = ACTIONS(670), - [anon_sym_TILDE_GT] = ACTIONS(670), - [anon_sym_LT_DASH] = ACTIONS(670), - [anon_sym_LT_TILDE] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_AT_AT] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_in] = ACTIONS(672), - [anon_sym_EQ_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_LT_LT] = ACTIONS(672), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_and] = ACTIONS(672), - [anon_sym_or] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(670), - [anon_sym_if] = ACTIONS(672), - [anon_sym_unless] = ACTIONS(672), - [anon_sym_case] = ACTIONS(672), - [anon_sym_LT_PIPE] = ACTIONS(670), - [anon_sym_LT_LT_PIPE] = ACTIONS(670), - [anon_sym_define] = ACTIONS(672), - [anon_sym_plan] = ACTIONS(672), - [anon_sym_apply] = ACTIONS(672), - [anon_sym_class] = ACTIONS(672), - [anon_sym_node] = ACTIONS(672), - [anon_sym_function] = ACTIONS(672), - [anon_sym_type] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_private] = ACTIONS(672), - [anon_sym_attr] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_AT_LPAREN] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_undef] = ACTIONS(672), - [anon_sym_include] = ACTIONS(672), - [anon_sym_require] = ACTIONS(672), - [anon_sym_contain] = ACTIONS(672), - [anon_sym_tag] = ACTIONS(672), - [anon_sym_debug] = ACTIONS(672), - [anon_sym_info] = ACTIONS(672), - [anon_sym_notice] = ACTIONS(672), - [anon_sym_warning] = ACTIONS(672), - [anon_sym_err] = ACTIONS(672), - [anon_sym_fail] = ACTIONS(672), - [sym_type] = ACTIONS(670), - [sym_name] = ACTIONS(672), - [sym_number] = ACTIONS(670), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_qmark] = ACTIONS(670), + [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(684), + [anon_sym_DASH_EQ] = ACTIONS(684), + [anon_sym_DASH_GT] = ACTIONS(684), + [anon_sym_TILDE_GT] = ACTIONS(684), + [anon_sym_LT_DASH] = ACTIONS(684), + [anon_sym_LT_TILDE] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_AT_AT] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(684), + [anon_sym_in] = ACTIONS(686), + [anon_sym_EQ_TILDE] = ACTIONS(684), + [anon_sym_BANG_TILDE] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(684), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_BANG_EQ] = ACTIONS(684), + [anon_sym_EQ_EQ] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_and] = ACTIONS(686), + [anon_sym_or] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(684), + [anon_sym_if] = ACTIONS(686), + [anon_sym_unless] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_LT_PIPE] = ACTIONS(684), + [anon_sym_LT_LT_PIPE] = ACTIONS(684), + [anon_sym_define] = ACTIONS(686), + [anon_sym_plan] = ACTIONS(686), + [anon_sym_apply] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_node] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_private] = ACTIONS(686), + [anon_sym_attr] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_AT_LPAREN] = ACTIONS(684), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_undef] = ACTIONS(686), + [anon_sym_include] = ACTIONS(686), + [anon_sym_require] = ACTIONS(686), + [anon_sym_contain] = ACTIONS(686), + [anon_sym_tag] = ACTIONS(686), + [anon_sym_debug] = ACTIONS(686), + [anon_sym_info] = ACTIONS(686), + [anon_sym_notice] = ACTIONS(686), + [anon_sym_warning] = ACTIONS(686), + [anon_sym_err] = ACTIONS(686), + [anon_sym_fail] = ACTIONS(686), + [sym_type] = ACTIONS(684), + [sym_name] = ACTIONS(686), + [sym_number] = ACTIONS(684), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_qmark] = ACTIONS(684), }, [202] = { [sym_comment] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(676), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_DASH_GT] = ACTIONS(674), - [anon_sym_TILDE_GT] = ACTIONS(674), - [anon_sym_LT_DASH] = ACTIONS(674), - [anon_sym_LT_TILDE] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_AT_AT] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_in] = ACTIONS(676), - [anon_sym_EQ_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_LT_LT] = ACTIONS(676), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_and] = ACTIONS(676), - [anon_sym_or] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [anon_sym_if] = ACTIONS(676), - [anon_sym_unless] = ACTIONS(676), - [anon_sym_case] = ACTIONS(676), - [anon_sym_LT_PIPE] = ACTIONS(674), - [anon_sym_LT_LT_PIPE] = ACTIONS(674), - [anon_sym_define] = ACTIONS(676), - [anon_sym_plan] = ACTIONS(676), - [anon_sym_apply] = ACTIONS(676), - [anon_sym_class] = ACTIONS(676), - [anon_sym_node] = ACTIONS(676), - [anon_sym_function] = ACTIONS(676), - [anon_sym_type] = ACTIONS(676), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_private] = ACTIONS(676), - [anon_sym_attr] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_AT_LPAREN] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_undef] = ACTIONS(676), - [anon_sym_include] = ACTIONS(676), - [anon_sym_require] = ACTIONS(676), - [anon_sym_contain] = ACTIONS(676), - [anon_sym_tag] = ACTIONS(676), - [anon_sym_debug] = ACTIONS(676), - [anon_sym_info] = ACTIONS(676), - [anon_sym_notice] = ACTIONS(676), - [anon_sym_warning] = ACTIONS(676), - [anon_sym_err] = ACTIONS(676), - [anon_sym_fail] = ACTIONS(676), - [sym_type] = ACTIONS(674), - [sym_name] = ACTIONS(676), - [sym_number] = ACTIONS(674), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_qmark] = ACTIONS(674), + [ts_builtin_sym_end] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(688), + [anon_sym_DASH_EQ] = ACTIONS(688), + [anon_sym_DASH_GT] = ACTIONS(688), + [anon_sym_TILDE_GT] = ACTIONS(688), + [anon_sym_LT_DASH] = ACTIONS(688), + [anon_sym_LT_TILDE] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(690), + [anon_sym_AT_AT] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_in] = ACTIONS(690), + [anon_sym_EQ_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_and] = ACTIONS(690), + [anon_sym_or] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_DOT] = ACTIONS(688), + [anon_sym_if] = ACTIONS(690), + [anon_sym_unless] = ACTIONS(690), + [anon_sym_case] = ACTIONS(690), + [anon_sym_LT_PIPE] = ACTIONS(688), + [anon_sym_LT_LT_PIPE] = ACTIONS(688), + [anon_sym_define] = ACTIONS(690), + [anon_sym_plan] = ACTIONS(690), + [anon_sym_apply] = ACTIONS(690), + [anon_sym_class] = ACTIONS(690), + [anon_sym_node] = ACTIONS(690), + [anon_sym_function] = ACTIONS(690), + [anon_sym_type] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_private] = ACTIONS(690), + [anon_sym_attr] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_AT_LPAREN] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_undef] = ACTIONS(690), + [anon_sym_include] = ACTIONS(690), + [anon_sym_require] = ACTIONS(690), + [anon_sym_contain] = ACTIONS(690), + [anon_sym_tag] = ACTIONS(690), + [anon_sym_debug] = ACTIONS(690), + [anon_sym_info] = ACTIONS(690), + [anon_sym_notice] = ACTIONS(690), + [anon_sym_warning] = ACTIONS(690), + [anon_sym_err] = ACTIONS(690), + [anon_sym_fail] = ACTIONS(690), + [sym_type] = ACTIONS(688), + [sym_name] = ACTIONS(690), + [sym_number] = ACTIONS(688), + [sym_true] = ACTIONS(690), + [sym_false] = ACTIONS(690), + [sym_qmark] = ACTIONS(688), }, [203] = { [sym_comment] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(680), - [anon_sym_PLUS_EQ] = ACTIONS(678), - [anon_sym_DASH_EQ] = ACTIONS(678), - [anon_sym_DASH_GT] = ACTIONS(678), - [anon_sym_TILDE_GT] = ACTIONS(678), - [anon_sym_LT_DASH] = ACTIONS(678), - [anon_sym_LT_TILDE] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [anon_sym_AT_AT] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_in] = ACTIONS(680), - [anon_sym_EQ_TILDE] = ACTIONS(678), - [anon_sym_BANG_TILDE] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(680), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_LT_LT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_BANG_EQ] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(678), - [anon_sym_and] = ACTIONS(680), - [anon_sym_or] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_if] = ACTIONS(680), - [anon_sym_unless] = ACTIONS(680), - [anon_sym_case] = ACTIONS(680), - [anon_sym_LT_PIPE] = ACTIONS(678), - [anon_sym_LT_LT_PIPE] = ACTIONS(678), - [anon_sym_define] = ACTIONS(680), - [anon_sym_plan] = ACTIONS(680), - [anon_sym_apply] = ACTIONS(680), - [anon_sym_class] = ACTIONS(680), - [anon_sym_node] = ACTIONS(680), - [anon_sym_function] = ACTIONS(680), - [anon_sym_type] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_private] = ACTIONS(680), - [anon_sym_attr] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_AT_LPAREN] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(680), - [anon_sym_default] = ACTIONS(680), - [anon_sym_undef] = ACTIONS(680), - [anon_sym_include] = ACTIONS(680), - [anon_sym_require] = ACTIONS(680), - [anon_sym_contain] = ACTIONS(680), - [anon_sym_tag] = ACTIONS(680), - [anon_sym_debug] = ACTIONS(680), - [anon_sym_info] = ACTIONS(680), - [anon_sym_notice] = ACTIONS(680), - [anon_sym_warning] = ACTIONS(680), - [anon_sym_err] = ACTIONS(680), - [anon_sym_fail] = ACTIONS(680), - [sym_type] = ACTIONS(678), - [sym_name] = ACTIONS(680), - [sym_number] = ACTIONS(678), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_qmark] = ACTIONS(678), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_DASH_GT] = ACTIONS(380), + [anon_sym_TILDE_GT] = ACTIONS(380), + [anon_sym_LT_DASH] = ACTIONS(380), + [anon_sym_LT_TILDE] = ACTIONS(380), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_AT_AT] = ACTIONS(380), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_in] = ACTIONS(382), + [anon_sym_EQ_TILDE] = ACTIONS(380), + [anon_sym_BANG_TILDE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_and] = ACTIONS(382), + [anon_sym_or] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(380), + [anon_sym_if] = ACTIONS(382), + [anon_sym_unless] = ACTIONS(382), + [anon_sym_case] = ACTIONS(382), + [anon_sym_LT_PIPE] = ACTIONS(380), + [anon_sym_LT_LT_PIPE] = ACTIONS(380), + [anon_sym_define] = ACTIONS(382), + [anon_sym_plan] = ACTIONS(382), + [anon_sym_apply] = ACTIONS(382), + [anon_sym_class] = ACTIONS(382), + [anon_sym_node] = ACTIONS(382), + [anon_sym_function] = ACTIONS(382), + [anon_sym_type] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(380), + [anon_sym_private] = ACTIONS(382), + [anon_sym_attr] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_AT_LPAREN] = ACTIONS(380), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(382), + [anon_sym_default] = ACTIONS(382), + [anon_sym_undef] = ACTIONS(382), + [anon_sym_include] = ACTIONS(382), + [anon_sym_require] = ACTIONS(382), + [anon_sym_contain] = ACTIONS(382), + [anon_sym_tag] = ACTIONS(382), + [anon_sym_debug] = ACTIONS(382), + [anon_sym_info] = ACTIONS(382), + [anon_sym_notice] = ACTIONS(382), + [anon_sym_warning] = ACTIONS(382), + [anon_sym_err] = ACTIONS(382), + [anon_sym_fail] = ACTIONS(382), + [sym_type] = ACTIONS(380), + [sym_name] = ACTIONS(382), + [sym_number] = ACTIONS(380), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_qmark] = ACTIONS(380), }, [204] = { [sym_comment] = STATE(204), - [ts_builtin_sym_end] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_EQ] = ACTIONS(684), - [anon_sym_PLUS_EQ] = ACTIONS(682), - [anon_sym_DASH_EQ] = ACTIONS(682), - [anon_sym_DASH_GT] = ACTIONS(682), - [anon_sym_TILDE_GT] = ACTIONS(682), - [anon_sym_LT_DASH] = ACTIONS(682), - [anon_sym_LT_TILDE] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_AT_AT] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(684), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_in] = ACTIONS(684), - [anon_sym_EQ_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(684), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_LT_LT] = ACTIONS(684), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(684), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(684), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_and] = ACTIONS(684), - [anon_sym_or] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_if] = ACTIONS(684), - [anon_sym_unless] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_LT_PIPE] = ACTIONS(682), - [anon_sym_LT_LT_PIPE] = ACTIONS(682), - [anon_sym_define] = ACTIONS(684), - [anon_sym_plan] = ACTIONS(684), - [anon_sym_apply] = ACTIONS(684), - [anon_sym_class] = ACTIONS(684), - [anon_sym_node] = ACTIONS(684), - [anon_sym_function] = ACTIONS(684), - [anon_sym_type] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_private] = ACTIONS(684), - [anon_sym_attr] = ACTIONS(684), - [anon_sym_SQUOTE] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_AT_LPAREN] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_undef] = ACTIONS(684), - [anon_sym_include] = ACTIONS(684), - [anon_sym_require] = ACTIONS(684), - [anon_sym_contain] = ACTIONS(684), - [anon_sym_tag] = ACTIONS(684), - [anon_sym_debug] = ACTIONS(684), - [anon_sym_info] = ACTIONS(684), - [anon_sym_notice] = ACTIONS(684), - [anon_sym_warning] = ACTIONS(684), - [anon_sym_err] = ACTIONS(684), - [anon_sym_fail] = ACTIONS(684), - [sym_type] = ACTIONS(682), - [sym_name] = ACTIONS(684), - [sym_number] = ACTIONS(682), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_qmark] = ACTIONS(682), + [ts_builtin_sym_end] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_DASH_GT] = ACTIONS(692), + [anon_sym_TILDE_GT] = ACTIONS(692), + [anon_sym_LT_DASH] = ACTIONS(692), + [anon_sym_LT_TILDE] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_AT] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_in] = ACTIONS(694), + [anon_sym_EQ_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_and] = ACTIONS(694), + [anon_sym_or] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(692), + [anon_sym_if] = ACTIONS(694), + [anon_sym_unless] = ACTIONS(694), + [anon_sym_case] = ACTIONS(694), + [anon_sym_LT_PIPE] = ACTIONS(692), + [anon_sym_LT_LT_PIPE] = ACTIONS(692), + [anon_sym_define] = ACTIONS(694), + [anon_sym_plan] = ACTIONS(694), + [anon_sym_apply] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_node] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_private] = ACTIONS(694), + [anon_sym_attr] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_AT_LPAREN] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_undef] = ACTIONS(694), + [anon_sym_include] = ACTIONS(694), + [anon_sym_require] = ACTIONS(694), + [anon_sym_contain] = ACTIONS(694), + [anon_sym_tag] = ACTIONS(694), + [anon_sym_debug] = ACTIONS(694), + [anon_sym_info] = ACTIONS(694), + [anon_sym_notice] = ACTIONS(694), + [anon_sym_warning] = ACTIONS(694), + [anon_sym_err] = ACTIONS(694), + [anon_sym_fail] = ACTIONS(694), + [sym_type] = ACTIONS(692), + [sym_name] = ACTIONS(694), + [sym_number] = ACTIONS(692), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_qmark] = ACTIONS(692), }, [205] = { [sym_comment] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(688), - [anon_sym_PLUS_EQ] = ACTIONS(686), - [anon_sym_DASH_EQ] = ACTIONS(686), - [anon_sym_DASH_GT] = ACTIONS(686), - [anon_sym_TILDE_GT] = ACTIONS(686), - [anon_sym_LT_DASH] = ACTIONS(686), - [anon_sym_LT_TILDE] = ACTIONS(686), - [anon_sym_AT] = ACTIONS(688), - [anon_sym_AT_AT] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(688), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_in] = ACTIONS(688), - [anon_sym_EQ_TILDE] = ACTIONS(686), - [anon_sym_BANG_TILDE] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(688), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_and] = ACTIONS(688), - [anon_sym_or] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(688), - [anon_sym_unless] = ACTIONS(688), - [anon_sym_case] = ACTIONS(688), - [anon_sym_LT_PIPE] = ACTIONS(686), - [anon_sym_LT_LT_PIPE] = ACTIONS(686), - [anon_sym_define] = ACTIONS(688), - [anon_sym_plan] = ACTIONS(688), - [anon_sym_apply] = ACTIONS(688), - [anon_sym_class] = ACTIONS(688), - [anon_sym_node] = ACTIONS(688), - [anon_sym_function] = ACTIONS(688), - [anon_sym_type] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(686), - [anon_sym_private] = ACTIONS(688), - [anon_sym_attr] = ACTIONS(688), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [anon_sym_AT_LPAREN] = ACTIONS(686), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(688), - [anon_sym_default] = ACTIONS(688), - [anon_sym_undef] = ACTIONS(688), - [anon_sym_include] = ACTIONS(688), - [anon_sym_require] = ACTIONS(688), - [anon_sym_contain] = ACTIONS(688), - [anon_sym_tag] = ACTIONS(688), - [anon_sym_debug] = ACTIONS(688), - [anon_sym_info] = ACTIONS(688), - [anon_sym_notice] = ACTIONS(688), - [anon_sym_warning] = ACTIONS(688), - [anon_sym_err] = ACTIONS(688), - [anon_sym_fail] = ACTIONS(688), - [sym_type] = ACTIONS(686), - [sym_name] = ACTIONS(688), - [sym_number] = ACTIONS(686), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_qmark] = ACTIONS(686), + [ts_builtin_sym_end] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_EQ] = ACTIONS(698), + [anon_sym_PLUS_EQ] = ACTIONS(696), + [anon_sym_DASH_EQ] = ACTIONS(696), + [anon_sym_DASH_GT] = ACTIONS(696), + [anon_sym_TILDE_GT] = ACTIONS(696), + [anon_sym_LT_DASH] = ACTIONS(696), + [anon_sym_LT_TILDE] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(698), + [anon_sym_AT_AT] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_in] = ACTIONS(698), + [anon_sym_EQ_TILDE] = ACTIONS(696), + [anon_sym_BANG_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(698), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_PERCENT] = ACTIONS(696), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(696), + [anon_sym_BANG_EQ] = ACTIONS(696), + [anon_sym_EQ_EQ] = ACTIONS(696), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_LT_EQ] = ACTIONS(696), + [anon_sym_and] = ACTIONS(698), + [anon_sym_or] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_unless] = ACTIONS(698), + [anon_sym_case] = ACTIONS(698), + [anon_sym_LT_PIPE] = ACTIONS(696), + [anon_sym_LT_LT_PIPE] = ACTIONS(696), + [anon_sym_define] = ACTIONS(698), + [anon_sym_plan] = ACTIONS(698), + [anon_sym_apply] = ACTIONS(698), + [anon_sym_class] = ACTIONS(698), + [anon_sym_node] = ACTIONS(698), + [anon_sym_function] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(696), + [anon_sym_private] = ACTIONS(698), + [anon_sym_attr] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(696), + [anon_sym_AT_LPAREN] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_undef] = ACTIONS(698), + [anon_sym_include] = ACTIONS(698), + [anon_sym_require] = ACTIONS(698), + [anon_sym_contain] = ACTIONS(698), + [anon_sym_tag] = ACTIONS(698), + [anon_sym_debug] = ACTIONS(698), + [anon_sym_info] = ACTIONS(698), + [anon_sym_notice] = ACTIONS(698), + [anon_sym_warning] = ACTIONS(698), + [anon_sym_err] = ACTIONS(698), + [anon_sym_fail] = ACTIONS(698), + [sym_type] = ACTIONS(696), + [sym_name] = ACTIONS(698), + [sym_number] = ACTIONS(696), + [sym_true] = ACTIONS(698), + [sym_false] = ACTIONS(698), + [sym_qmark] = ACTIONS(696), }, [206] = { [sym_comment] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(692), - [anon_sym_PLUS_EQ] = ACTIONS(690), - [anon_sym_DASH_EQ] = ACTIONS(690), - [anon_sym_DASH_GT] = ACTIONS(690), - [anon_sym_TILDE_GT] = ACTIONS(690), - [anon_sym_LT_DASH] = ACTIONS(690), - [anon_sym_LT_TILDE] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(692), - [anon_sym_AT_AT] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_in] = ACTIONS(692), - [anon_sym_EQ_TILDE] = ACTIONS(690), - [anon_sym_BANG_TILDE] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_BANG_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(692), - [anon_sym_GT_EQ] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_LT_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(692), - [anon_sym_or] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_if] = ACTIONS(692), - [anon_sym_unless] = ACTIONS(692), - [anon_sym_case] = ACTIONS(692), - [anon_sym_LT_PIPE] = ACTIONS(690), - [anon_sym_LT_LT_PIPE] = ACTIONS(690), - [anon_sym_define] = ACTIONS(692), - [anon_sym_plan] = ACTIONS(692), - [anon_sym_apply] = ACTIONS(692), - [anon_sym_class] = ACTIONS(692), - [anon_sym_node] = ACTIONS(692), - [anon_sym_function] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_private] = ACTIONS(692), - [anon_sym_attr] = ACTIONS(692), - [anon_sym_SQUOTE] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_AT_LPAREN] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_undef] = ACTIONS(692), - [anon_sym_include] = ACTIONS(692), - [anon_sym_require] = ACTIONS(692), - [anon_sym_contain] = ACTIONS(692), - [anon_sym_tag] = ACTIONS(692), - [anon_sym_debug] = ACTIONS(692), - [anon_sym_info] = ACTIONS(692), - [anon_sym_notice] = ACTIONS(692), - [anon_sym_warning] = ACTIONS(692), - [anon_sym_err] = ACTIONS(692), - [anon_sym_fail] = ACTIONS(692), - [sym_type] = ACTIONS(690), - [sym_name] = ACTIONS(692), - [sym_number] = ACTIONS(690), - [sym_true] = ACTIONS(692), - [sym_false] = ACTIONS(692), - [sym_qmark] = ACTIONS(690), + [ts_builtin_sym_end] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_EQ] = ACTIONS(702), + [anon_sym_PLUS_EQ] = ACTIONS(700), + [anon_sym_DASH_EQ] = ACTIONS(700), + [anon_sym_DASH_GT] = ACTIONS(700), + [anon_sym_TILDE_GT] = ACTIONS(700), + [anon_sym_LT_DASH] = ACTIONS(700), + [anon_sym_LT_TILDE] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_AT_AT] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_in] = ACTIONS(702), + [anon_sym_EQ_TILDE] = ACTIONS(700), + [anon_sym_BANG_TILDE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(702), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_BANG_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(700), + [anon_sym_GT] = ACTIONS(702), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(702), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_and] = ACTIONS(702), + [anon_sym_or] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_if] = ACTIONS(702), + [anon_sym_unless] = ACTIONS(702), + [anon_sym_case] = ACTIONS(702), + [anon_sym_LT_PIPE] = ACTIONS(700), + [anon_sym_LT_LT_PIPE] = ACTIONS(700), + [anon_sym_define] = ACTIONS(702), + [anon_sym_plan] = ACTIONS(702), + [anon_sym_apply] = ACTIONS(702), + [anon_sym_class] = ACTIONS(702), + [anon_sym_node] = ACTIONS(702), + [anon_sym_function] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_private] = ACTIONS(702), + [anon_sym_attr] = ACTIONS(702), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_AT_LPAREN] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_undef] = ACTIONS(702), + [anon_sym_include] = ACTIONS(702), + [anon_sym_require] = ACTIONS(702), + [anon_sym_contain] = ACTIONS(702), + [anon_sym_tag] = ACTIONS(702), + [anon_sym_debug] = ACTIONS(702), + [anon_sym_info] = ACTIONS(702), + [anon_sym_notice] = ACTIONS(702), + [anon_sym_warning] = ACTIONS(702), + [anon_sym_err] = ACTIONS(702), + [anon_sym_fail] = ACTIONS(702), + [sym_type] = ACTIONS(700), + [sym_name] = ACTIONS(702), + [sym_number] = ACTIONS(700), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_qmark] = ACTIONS(700), }, [207] = { [sym_comment] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_PLUS_EQ] = ACTIONS(694), - [anon_sym_DASH_EQ] = ACTIONS(694), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_TILDE_GT] = ACTIONS(694), - [anon_sym_LT_DASH] = ACTIONS(694), - [anon_sym_LT_TILDE] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_AT_AT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_EQ_TILDE] = ACTIONS(694), - [anon_sym_BANG_TILDE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(696), - [anon_sym_unless] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_LT_PIPE] = ACTIONS(694), - [anon_sym_LT_LT_PIPE] = ACTIONS(694), - [anon_sym_define] = ACTIONS(696), - [anon_sym_plan] = ACTIONS(696), - [anon_sym_apply] = ACTIONS(696), - [anon_sym_class] = ACTIONS(696), - [anon_sym_node] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [anon_sym_type] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_private] = ACTIONS(696), - [anon_sym_attr] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_AT_LPAREN] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_undef] = ACTIONS(696), - [anon_sym_include] = ACTIONS(696), - [anon_sym_require] = ACTIONS(696), - [anon_sym_contain] = ACTIONS(696), - [anon_sym_tag] = ACTIONS(696), - [anon_sym_debug] = ACTIONS(696), - [anon_sym_info] = ACTIONS(696), - [anon_sym_notice] = ACTIONS(696), - [anon_sym_warning] = ACTIONS(696), - [anon_sym_err] = ACTIONS(696), - [anon_sym_fail] = ACTIONS(696), - [sym_type] = ACTIONS(694), - [sym_name] = ACTIONS(696), - [sym_number] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_qmark] = ACTIONS(694), + [ts_builtin_sym_end] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(706), + [anon_sym_PLUS_EQ] = ACTIONS(704), + [anon_sym_DASH_EQ] = ACTIONS(704), + [anon_sym_DASH_GT] = ACTIONS(704), + [anon_sym_TILDE_GT] = ACTIONS(704), + [anon_sym_LT_DASH] = ACTIONS(704), + [anon_sym_LT_TILDE] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_AT_AT] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_in] = ACTIONS(706), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_and] = ACTIONS(706), + [anon_sym_or] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_if] = ACTIONS(706), + [anon_sym_unless] = ACTIONS(706), + [anon_sym_case] = ACTIONS(706), + [anon_sym_LT_PIPE] = ACTIONS(704), + [anon_sym_LT_LT_PIPE] = ACTIONS(704), + [anon_sym_define] = ACTIONS(706), + [anon_sym_plan] = ACTIONS(706), + [anon_sym_apply] = ACTIONS(706), + [anon_sym_class] = ACTIONS(706), + [anon_sym_node] = ACTIONS(706), + [anon_sym_function] = ACTIONS(706), + [anon_sym_type] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_private] = ACTIONS(706), + [anon_sym_attr] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_AT_LPAREN] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(706), + [anon_sym_default] = ACTIONS(706), + [anon_sym_undef] = ACTIONS(706), + [anon_sym_include] = ACTIONS(706), + [anon_sym_require] = ACTIONS(706), + [anon_sym_contain] = ACTIONS(706), + [anon_sym_tag] = ACTIONS(706), + [anon_sym_debug] = ACTIONS(706), + [anon_sym_info] = ACTIONS(706), + [anon_sym_notice] = ACTIONS(706), + [anon_sym_warning] = ACTIONS(706), + [anon_sym_err] = ACTIONS(706), + [anon_sym_fail] = ACTIONS(706), + [sym_type] = ACTIONS(704), + [sym_name] = ACTIONS(706), + [sym_number] = ACTIONS(704), + [sym_true] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [sym_qmark] = ACTIONS(704), }, [208] = { [sym_comment] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(700), - [anon_sym_PLUS_EQ] = ACTIONS(698), - [anon_sym_DASH_EQ] = ACTIONS(698), - [anon_sym_DASH_GT] = ACTIONS(698), - [anon_sym_TILDE_GT] = ACTIONS(698), - [anon_sym_LT_DASH] = ACTIONS(698), - [anon_sym_LT_TILDE] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_AT] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(700), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_in] = ACTIONS(700), - [anon_sym_EQ_TILDE] = ACTIONS(698), - [anon_sym_BANG_TILDE] = ACTIONS(698), - [anon_sym_PLUS] = ACTIONS(700), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_LT_LT] = ACTIONS(700), - [anon_sym_GT_GT] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_and] = ACTIONS(700), - [anon_sym_or] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_DOT] = ACTIONS(698), - [anon_sym_if] = ACTIONS(700), - [anon_sym_unless] = ACTIONS(700), - [anon_sym_case] = ACTIONS(700), - [anon_sym_LT_PIPE] = ACTIONS(698), - [anon_sym_LT_LT_PIPE] = ACTIONS(698), - [anon_sym_define] = ACTIONS(700), - [anon_sym_plan] = ACTIONS(700), - [anon_sym_apply] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_node] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_private] = ACTIONS(700), - [anon_sym_attr] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_AT_LPAREN] = ACTIONS(698), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_undef] = ACTIONS(700), - [anon_sym_include] = ACTIONS(700), - [anon_sym_require] = ACTIONS(700), - [anon_sym_contain] = ACTIONS(700), - [anon_sym_tag] = ACTIONS(700), - [anon_sym_debug] = ACTIONS(700), - [anon_sym_info] = ACTIONS(700), - [anon_sym_notice] = ACTIONS(700), - [anon_sym_warning] = ACTIONS(700), - [anon_sym_err] = ACTIONS(700), - [anon_sym_fail] = ACTIONS(700), - [sym_type] = ACTIONS(698), - [sym_name] = ACTIONS(700), - [sym_number] = ACTIONS(698), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_qmark] = ACTIONS(698), + [ts_builtin_sym_end] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(710), + [anon_sym_PLUS_EQ] = ACTIONS(708), + [anon_sym_DASH_EQ] = ACTIONS(708), + [anon_sym_DASH_GT] = ACTIONS(708), + [anon_sym_TILDE_GT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(708), + [anon_sym_LT_TILDE] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT_AT] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_in] = ACTIONS(710), + [anon_sym_EQ_TILDE] = ACTIONS(708), + [anon_sym_BANG_TILDE] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(708), + [anon_sym_PERCENT] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(708), + [anon_sym_BANG_EQ] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(708), + [anon_sym_and] = ACTIONS(710), + [anon_sym_or] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_if] = ACTIONS(710), + [anon_sym_unless] = ACTIONS(710), + [anon_sym_case] = ACTIONS(710), + [anon_sym_LT_PIPE] = ACTIONS(708), + [anon_sym_LT_LT_PIPE] = ACTIONS(708), + [anon_sym_define] = ACTIONS(710), + [anon_sym_plan] = ACTIONS(710), + [anon_sym_apply] = ACTIONS(710), + [anon_sym_class] = ACTIONS(710), + [anon_sym_node] = ACTIONS(710), + [anon_sym_function] = ACTIONS(710), + [anon_sym_type] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_private] = ACTIONS(710), + [anon_sym_attr] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_AT_LPAREN] = ACTIONS(708), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(710), + [anon_sym_default] = ACTIONS(710), + [anon_sym_undef] = ACTIONS(710), + [anon_sym_include] = ACTIONS(710), + [anon_sym_require] = ACTIONS(710), + [anon_sym_contain] = ACTIONS(710), + [anon_sym_tag] = ACTIONS(710), + [anon_sym_debug] = ACTIONS(710), + [anon_sym_info] = ACTIONS(710), + [anon_sym_notice] = ACTIONS(710), + [anon_sym_warning] = ACTIONS(710), + [anon_sym_err] = ACTIONS(710), + [anon_sym_fail] = ACTIONS(710), + [sym_type] = ACTIONS(708), + [sym_name] = ACTIONS(710), + [sym_number] = ACTIONS(708), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_qmark] = ACTIONS(708), }, [209] = { [sym_comment] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_COMMA] = ACTIONS(702), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_PLUS_EQ] = ACTIONS(702), - [anon_sym_DASH_EQ] = ACTIONS(702), - [anon_sym_DASH_GT] = ACTIONS(702), - [anon_sym_TILDE_GT] = ACTIONS(702), - [anon_sym_LT_DASH] = ACTIONS(702), - [anon_sym_LT_TILDE] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_AT_AT] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym_in] = ACTIONS(704), - [anon_sym_EQ_TILDE] = ACTIONS(702), - [anon_sym_BANG_TILDE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_PERCENT] = ACTIONS(702), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_and] = ACTIONS(704), - [anon_sym_or] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_DOT] = ACTIONS(702), - [anon_sym_if] = ACTIONS(704), - [anon_sym_unless] = ACTIONS(704), - [anon_sym_case] = ACTIONS(704), - [anon_sym_LT_PIPE] = ACTIONS(702), - [anon_sym_LT_LT_PIPE] = ACTIONS(702), - [anon_sym_define] = ACTIONS(704), - [anon_sym_plan] = ACTIONS(704), - [anon_sym_apply] = ACTIONS(704), - [anon_sym_class] = ACTIONS(704), - [anon_sym_node] = ACTIONS(704), - [anon_sym_function] = ACTIONS(704), - [anon_sym_type] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_private] = ACTIONS(704), - [anon_sym_attr] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_AT_LPAREN] = ACTIONS(702), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(704), - [anon_sym_default] = ACTIONS(704), - [anon_sym_undef] = ACTIONS(704), - [anon_sym_include] = ACTIONS(704), - [anon_sym_require] = ACTIONS(704), - [anon_sym_contain] = ACTIONS(704), - [anon_sym_tag] = ACTIONS(704), - [anon_sym_debug] = ACTIONS(704), - [anon_sym_info] = ACTIONS(704), - [anon_sym_notice] = ACTIONS(704), - [anon_sym_warning] = ACTIONS(704), - [anon_sym_err] = ACTIONS(704), - [anon_sym_fail] = ACTIONS(704), - [sym_type] = ACTIONS(702), - [sym_name] = ACTIONS(704), - [sym_number] = ACTIONS(702), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_qmark] = ACTIONS(702), + [ts_builtin_sym_end] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_DASH_GT] = ACTIONS(388), + [anon_sym_TILDE_GT] = ACTIONS(388), + [anon_sym_LT_DASH] = ACTIONS(388), + [anon_sym_LT_TILDE] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(390), + [anon_sym_AT_AT] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_in] = ACTIONS(390), + [anon_sym_EQ_TILDE] = ACTIONS(388), + [anon_sym_BANG_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_and] = ACTIONS(390), + [anon_sym_or] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_unless] = ACTIONS(390), + [anon_sym_case] = ACTIONS(390), + [anon_sym_LT_PIPE] = ACTIONS(388), + [anon_sym_LT_LT_PIPE] = ACTIONS(388), + [anon_sym_define] = ACTIONS(390), + [anon_sym_plan] = ACTIONS(390), + [anon_sym_apply] = ACTIONS(390), + [anon_sym_class] = ACTIONS(390), + [anon_sym_node] = ACTIONS(390), + [anon_sym_function] = ACTIONS(390), + [anon_sym_type] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_private] = ACTIONS(390), + [anon_sym_attr] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_AT_LPAREN] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_undef] = ACTIONS(390), + [anon_sym_include] = ACTIONS(390), + [anon_sym_require] = ACTIONS(390), + [anon_sym_contain] = ACTIONS(390), + [anon_sym_tag] = ACTIONS(390), + [anon_sym_debug] = ACTIONS(390), + [anon_sym_info] = ACTIONS(390), + [anon_sym_notice] = ACTIONS(390), + [anon_sym_warning] = ACTIONS(390), + [anon_sym_err] = ACTIONS(390), + [anon_sym_fail] = ACTIONS(390), + [sym_type] = ACTIONS(388), + [sym_name] = ACTIONS(390), + [sym_number] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_qmark] = ACTIONS(388), }, [210] = { - [sym__statement_function_args] = STATE(1574), - [sym__assignment] = STATE(1588), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(725), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), [sym_comment] = STATE(210), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(143), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - }, - [211] = { - [sym_comment] = STATE(211), [ts_builtin_sym_end] = ACTIONS(712), [anon_sym_SEMI] = ACTIONS(712), [anon_sym_LBRACE] = ACTIONS(712), @@ -25390,8 +25456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(714), [sym_qmark] = ACTIONS(712), }, - [212] = { - [sym_comment] = STATE(212), + [211] = { + [sym_comment] = STATE(211), [ts_builtin_sym_end] = ACTIONS(716), [anon_sym_SEMI] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(716), @@ -25467,85 +25533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(718), [sym_qmark] = ACTIONS(716), }, - [213] = { - [sym_comment] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(504), - [anon_sym_DASH_EQ] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(504), - [anon_sym_TILDE_GT] = ACTIONS(504), - [anon_sym_LT_DASH] = ACTIONS(504), - [anon_sym_LT_TILDE] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_AT_AT] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_in] = ACTIONS(506), - [anon_sym_EQ_TILDE] = ACTIONS(504), - [anon_sym_BANG_TILDE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_and] = ACTIONS(506), - [anon_sym_or] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_if] = ACTIONS(506), - [anon_sym_unless] = ACTIONS(506), - [anon_sym_case] = ACTIONS(506), - [anon_sym_LT_PIPE] = ACTIONS(504), - [anon_sym_LT_LT_PIPE] = ACTIONS(504), - [anon_sym_define] = ACTIONS(506), - [anon_sym_plan] = ACTIONS(506), - [anon_sym_apply] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_node] = ACTIONS(506), - [anon_sym_function] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(504), - [anon_sym_private] = ACTIONS(506), - [anon_sym_attr] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_DQUOTE] = ACTIONS(504), - [anon_sym_AT_LPAREN] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_undef] = ACTIONS(506), - [anon_sym_include] = ACTIONS(506), - [anon_sym_require] = ACTIONS(506), - [anon_sym_contain] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_debug] = ACTIONS(506), - [anon_sym_info] = ACTIONS(506), - [anon_sym_notice] = ACTIONS(506), - [anon_sym_warning] = ACTIONS(506), - [anon_sym_err] = ACTIONS(506), - [anon_sym_fail] = ACTIONS(506), - [sym_type] = ACTIONS(504), - [sym_name] = ACTIONS(506), - [sym_number] = ACTIONS(504), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_qmark] = ACTIONS(504), - }, - [214] = { - [sym_comment] = STATE(214), + [212] = { + [sym_comment] = STATE(212), [ts_builtin_sym_end] = ACTIONS(720), [anon_sym_SEMI] = ACTIONS(720), [anon_sym_LBRACE] = ACTIONS(720), @@ -25621,8 +25610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(722), [sym_qmark] = ACTIONS(720), }, - [215] = { - [sym_comment] = STATE(215), + [213] = { + [sym_comment] = STATE(213), [ts_builtin_sym_end] = ACTIONS(724), [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LBRACE] = ACTIONS(724), @@ -25698,8 +25687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(726), [sym_qmark] = ACTIONS(724), }, - [216] = { - [sym_comment] = STATE(216), + [214] = { + [sym_comment] = STATE(214), [ts_builtin_sym_end] = ACTIONS(728), [anon_sym_SEMI] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(728), @@ -25775,8 +25764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(730), [sym_qmark] = ACTIONS(728), }, - [217] = { - [sym_comment] = STATE(217), + [215] = { + [sym_comment] = STATE(215), [ts_builtin_sym_end] = ACTIONS(732), [anon_sym_SEMI] = ACTIONS(732), [anon_sym_LBRACE] = ACTIONS(732), @@ -25852,8 +25841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(734), [sym_qmark] = ACTIONS(732), }, - [218] = { - [sym_comment] = STATE(218), + [216] = { + [sym_comment] = STATE(216), [ts_builtin_sym_end] = ACTIONS(736), [anon_sym_SEMI] = ACTIONS(736), [anon_sym_LBRACE] = ACTIONS(736), @@ -25929,357 +25918,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(738), [sym_qmark] = ACTIONS(736), }, + [217] = { + [sym_comment] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(506), + [anon_sym_DASH_EQ] = ACTIONS(506), + [anon_sym_DASH_GT] = ACTIONS(506), + [anon_sym_TILDE_GT] = ACTIONS(506), + [anon_sym_LT_DASH] = ACTIONS(506), + [anon_sym_LT_TILDE] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_AT_AT] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_in] = ACTIONS(508), + [anon_sym_EQ_TILDE] = ACTIONS(506), + [anon_sym_BANG_TILDE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_and] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_unless] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_LT_PIPE] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_define] = ACTIONS(508), + [anon_sym_plan] = ACTIONS(508), + [anon_sym_apply] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_node] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_type] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_private] = ACTIONS(508), + [anon_sym_attr] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_AT_LPAREN] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_undef] = ACTIONS(508), + [anon_sym_include] = ACTIONS(508), + [anon_sym_require] = ACTIONS(508), + [anon_sym_contain] = ACTIONS(508), + [anon_sym_tag] = ACTIONS(508), + [anon_sym_debug] = ACTIONS(508), + [anon_sym_info] = ACTIONS(508), + [anon_sym_notice] = ACTIONS(508), + [anon_sym_warning] = ACTIONS(508), + [anon_sym_err] = ACTIONS(508), + [anon_sym_fail] = ACTIONS(508), + [sym_type] = ACTIONS(506), + [sym_name] = ACTIONS(508), + [sym_number] = ACTIONS(506), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_qmark] = ACTIONS(506), + }, + [218] = { + [sym_comment] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_PLUS_EQ] = ACTIONS(742), + [anon_sym_DASH_EQ] = ACTIONS(742), + [anon_sym_DASH_GT] = ACTIONS(742), + [anon_sym_TILDE_GT] = ACTIONS(742), + [anon_sym_LT_DASH] = ACTIONS(742), + [anon_sym_LT_TILDE] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_AT_AT] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_in] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(742), + [anon_sym_BANG_TILDE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(742), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_and] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_if] = ACTIONS(744), + [anon_sym_unless] = ACTIONS(744), + [anon_sym_case] = ACTIONS(744), + [anon_sym_LT_PIPE] = ACTIONS(742), + [anon_sym_LT_LT_PIPE] = ACTIONS(742), + [anon_sym_define] = ACTIONS(744), + [anon_sym_plan] = ACTIONS(744), + [anon_sym_apply] = ACTIONS(744), + [anon_sym_class] = ACTIONS(744), + [anon_sym_node] = ACTIONS(744), + [anon_sym_function] = ACTIONS(744), + [anon_sym_type] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(742), + [anon_sym_private] = ACTIONS(744), + [anon_sym_attr] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(742), + [anon_sym_AT_LPAREN] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_undef] = ACTIONS(744), + [anon_sym_include] = ACTIONS(744), + [anon_sym_require] = ACTIONS(744), + [anon_sym_contain] = ACTIONS(744), + [anon_sym_tag] = ACTIONS(744), + [anon_sym_debug] = ACTIONS(744), + [anon_sym_info] = ACTIONS(744), + [anon_sym_notice] = ACTIONS(744), + [anon_sym_warning] = ACTIONS(744), + [anon_sym_err] = ACTIONS(744), + [anon_sym_fail] = ACTIONS(744), + [sym_type] = ACTIONS(742), + [sym_name] = ACTIONS(744), + [sym_number] = ACTIONS(742), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_qmark] = ACTIONS(742), + }, [219] = { [sym_comment] = STATE(219), - [ts_builtin_sym_end] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_EQ] = ACTIONS(742), - [anon_sym_PLUS_EQ] = ACTIONS(740), - [anon_sym_DASH_EQ] = ACTIONS(740), - [anon_sym_DASH_GT] = ACTIONS(740), - [anon_sym_TILDE_GT] = ACTIONS(740), - [anon_sym_LT_DASH] = ACTIONS(740), - [anon_sym_LT_TILDE] = ACTIONS(740), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_AT_AT] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_in] = ACTIONS(742), - [anon_sym_EQ_TILDE] = ACTIONS(740), - [anon_sym_BANG_TILDE] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(742), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(740), - [anon_sym_LT_LT] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(740), - [anon_sym_BANG_EQ] = ACTIONS(740), - [anon_sym_EQ_EQ] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(740), - [anon_sym_and] = ACTIONS(742), - [anon_sym_or] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_if] = ACTIONS(742), - [anon_sym_unless] = ACTIONS(742), - [anon_sym_case] = ACTIONS(742), - [anon_sym_LT_PIPE] = ACTIONS(740), - [anon_sym_LT_LT_PIPE] = ACTIONS(740), - [anon_sym_define] = ACTIONS(742), - [anon_sym_plan] = ACTIONS(742), - [anon_sym_apply] = ACTIONS(742), - [anon_sym_class] = ACTIONS(742), - [anon_sym_node] = ACTIONS(742), - [anon_sym_function] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_private] = ACTIONS(742), - [anon_sym_attr] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_AT_LPAREN] = ACTIONS(740), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(742), - [anon_sym_default] = ACTIONS(742), - [anon_sym_undef] = ACTIONS(742), - [anon_sym_include] = ACTIONS(742), - [anon_sym_require] = ACTIONS(742), - [anon_sym_contain] = ACTIONS(742), - [anon_sym_tag] = ACTIONS(742), - [anon_sym_debug] = ACTIONS(742), - [anon_sym_info] = ACTIONS(742), - [anon_sym_notice] = ACTIONS(742), - [anon_sym_warning] = ACTIONS(742), - [anon_sym_err] = ACTIONS(742), - [anon_sym_fail] = ACTIONS(742), - [sym_type] = ACTIONS(740), - [sym_name] = ACTIONS(742), - [sym_number] = ACTIONS(740), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_qmark] = ACTIONS(740), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(748), + [anon_sym_PLUS_EQ] = ACTIONS(746), + [anon_sym_DASH_EQ] = ACTIONS(746), + [anon_sym_DASH_GT] = ACTIONS(746), + [anon_sym_TILDE_GT] = ACTIONS(746), + [anon_sym_LT_DASH] = ACTIONS(746), + [anon_sym_LT_TILDE] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_AT_AT] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(746), + [anon_sym_BANG_TILDE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(746), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(746), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(746), + [anon_sym_and] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_LT_PIPE] = ACTIONS(746), + [anon_sym_LT_LT_PIPE] = ACTIONS(746), + [anon_sym_define] = ACTIONS(748), + [anon_sym_plan] = ACTIONS(748), + [anon_sym_apply] = ACTIONS(748), + [anon_sym_class] = ACTIONS(748), + [anon_sym_node] = ACTIONS(748), + [anon_sym_function] = ACTIONS(748), + [anon_sym_type] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(746), + [anon_sym_private] = ACTIONS(748), + [anon_sym_attr] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(746), + [anon_sym_AT_LPAREN] = ACTIONS(746), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_undef] = ACTIONS(748), + [anon_sym_include] = ACTIONS(748), + [anon_sym_require] = ACTIONS(748), + [anon_sym_contain] = ACTIONS(748), + [anon_sym_tag] = ACTIONS(748), + [anon_sym_debug] = ACTIONS(748), + [anon_sym_info] = ACTIONS(748), + [anon_sym_notice] = ACTIONS(748), + [anon_sym_warning] = ACTIONS(748), + [anon_sym_err] = ACTIONS(748), + [anon_sym_fail] = ACTIONS(748), + [sym_type] = ACTIONS(746), + [sym_name] = ACTIONS(748), + [sym_number] = ACTIONS(746), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_qmark] = ACTIONS(746), }, [220] = { [sym_comment] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(744), - [anon_sym_DASH_EQ] = ACTIONS(744), - [anon_sym_DASH_GT] = ACTIONS(744), - [anon_sym_TILDE_GT] = ACTIONS(744), - [anon_sym_LT_DASH] = ACTIONS(744), - [anon_sym_LT_TILDE] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(746), - [anon_sym_AT_AT] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_in] = ACTIONS(746), - [anon_sym_EQ_TILDE] = ACTIONS(744), - [anon_sym_BANG_TILDE] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_LT_LT] = ACTIONS(746), - [anon_sym_GT_GT] = ACTIONS(744), - [anon_sym_BANG_EQ] = ACTIONS(744), - [anon_sym_EQ_EQ] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_GT_EQ] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LT_EQ] = ACTIONS(744), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_if] = ACTIONS(746), - [anon_sym_unless] = ACTIONS(746), - [anon_sym_case] = ACTIONS(746), - [anon_sym_LT_PIPE] = ACTIONS(744), - [anon_sym_LT_LT_PIPE] = ACTIONS(744), - [anon_sym_define] = ACTIONS(746), - [anon_sym_plan] = ACTIONS(746), - [anon_sym_apply] = ACTIONS(746), - [anon_sym_class] = ACTIONS(746), - [anon_sym_node] = ACTIONS(746), - [anon_sym_function] = ACTIONS(746), - [anon_sym_type] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_private] = ACTIONS(746), - [anon_sym_attr] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_AT_LPAREN] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(746), - [anon_sym_default] = ACTIONS(746), - [anon_sym_undef] = ACTIONS(746), - [anon_sym_include] = ACTIONS(746), - [anon_sym_require] = ACTIONS(746), - [anon_sym_contain] = ACTIONS(746), - [anon_sym_tag] = ACTIONS(746), - [anon_sym_debug] = ACTIONS(746), - [anon_sym_info] = ACTIONS(746), - [anon_sym_notice] = ACTIONS(746), - [anon_sym_warning] = ACTIONS(746), - [anon_sym_err] = ACTIONS(746), - [anon_sym_fail] = ACTIONS(746), - [sym_type] = ACTIONS(744), - [sym_name] = ACTIONS(746), - [sym_number] = ACTIONS(744), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_qmark] = ACTIONS(744), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_DASH_GT] = ACTIONS(750), + [anon_sym_TILDE_GT] = ACTIONS(750), + [anon_sym_LT_DASH] = ACTIONS(750), + [anon_sym_LT_TILDE] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_AT_AT] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_in] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(750), + [anon_sym_BANG_TILDE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_and] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_if] = ACTIONS(752), + [anon_sym_unless] = ACTIONS(752), + [anon_sym_case] = ACTIONS(752), + [anon_sym_LT_PIPE] = ACTIONS(750), + [anon_sym_LT_LT_PIPE] = ACTIONS(750), + [anon_sym_define] = ACTIONS(752), + [anon_sym_plan] = ACTIONS(752), + [anon_sym_apply] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_node] = ACTIONS(752), + [anon_sym_function] = ACTIONS(752), + [anon_sym_type] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_private] = ACTIONS(752), + [anon_sym_attr] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_AT_LPAREN] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_undef] = ACTIONS(752), + [anon_sym_include] = ACTIONS(752), + [anon_sym_require] = ACTIONS(752), + [anon_sym_contain] = ACTIONS(752), + [anon_sym_tag] = ACTIONS(752), + [anon_sym_debug] = ACTIONS(752), + [anon_sym_info] = ACTIONS(752), + [anon_sym_notice] = ACTIONS(752), + [anon_sym_warning] = ACTIONS(752), + [anon_sym_err] = ACTIONS(752), + [anon_sym_fail] = ACTIONS(752), + [sym_type] = ACTIONS(750), + [sym_name] = ACTIONS(752), + [sym_number] = ACTIONS(750), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_qmark] = ACTIONS(750), }, [221] = { [sym_comment] = STATE(221), - [ts_builtin_sym_end] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_PLUS_EQ] = ACTIONS(748), - [anon_sym_DASH_EQ] = ACTIONS(748), - [anon_sym_DASH_GT] = ACTIONS(748), - [anon_sym_TILDE_GT] = ACTIONS(748), - [anon_sym_LT_DASH] = ACTIONS(748), - [anon_sym_LT_TILDE] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_AT_AT] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(750), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(750), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_if] = ACTIONS(750), - [anon_sym_unless] = ACTIONS(750), - [anon_sym_case] = ACTIONS(750), - [anon_sym_LT_PIPE] = ACTIONS(748), - [anon_sym_LT_LT_PIPE] = ACTIONS(748), - [anon_sym_define] = ACTIONS(750), - [anon_sym_plan] = ACTIONS(750), - [anon_sym_apply] = ACTIONS(750), - [anon_sym_class] = ACTIONS(750), - [anon_sym_node] = ACTIONS(750), - [anon_sym_function] = ACTIONS(750), - [anon_sym_type] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_private] = ACTIONS(750), - [anon_sym_attr] = ACTIONS(750), - [anon_sym_SQUOTE] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_AT_LPAREN] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(750), - [anon_sym_default] = ACTIONS(750), - [anon_sym_undef] = ACTIONS(750), - [anon_sym_include] = ACTIONS(750), - [anon_sym_require] = ACTIONS(750), - [anon_sym_contain] = ACTIONS(750), - [anon_sym_tag] = ACTIONS(750), - [anon_sym_debug] = ACTIONS(750), - [anon_sym_info] = ACTIONS(750), - [anon_sym_notice] = ACTIONS(750), - [anon_sym_warning] = ACTIONS(750), - [anon_sym_err] = ACTIONS(750), - [anon_sym_fail] = ACTIONS(750), - [sym_type] = ACTIONS(748), - [sym_name] = ACTIONS(750), - [sym_number] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_qmark] = ACTIONS(748), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_EQ] = ACTIONS(756), + [anon_sym_PLUS_EQ] = ACTIONS(754), + [anon_sym_DASH_EQ] = ACTIONS(754), + [anon_sym_DASH_GT] = ACTIONS(754), + [anon_sym_TILDE_GT] = ACTIONS(754), + [anon_sym_LT_DASH] = ACTIONS(754), + [anon_sym_LT_TILDE] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_AT_AT] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(754), + [anon_sym_BANG_TILDE] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_and] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_if] = ACTIONS(756), + [anon_sym_unless] = ACTIONS(756), + [anon_sym_case] = ACTIONS(756), + [anon_sym_LT_PIPE] = ACTIONS(754), + [anon_sym_LT_LT_PIPE] = ACTIONS(754), + [anon_sym_define] = ACTIONS(756), + [anon_sym_plan] = ACTIONS(756), + [anon_sym_apply] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_node] = ACTIONS(756), + [anon_sym_function] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_private] = ACTIONS(756), + [anon_sym_attr] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_AT_LPAREN] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_undef] = ACTIONS(756), + [anon_sym_include] = ACTIONS(756), + [anon_sym_require] = ACTIONS(756), + [anon_sym_contain] = ACTIONS(756), + [anon_sym_tag] = ACTIONS(756), + [anon_sym_debug] = ACTIONS(756), + [anon_sym_info] = ACTIONS(756), + [anon_sym_notice] = ACTIONS(756), + [anon_sym_warning] = ACTIONS(756), + [anon_sym_err] = ACTIONS(756), + [anon_sym_fail] = ACTIONS(756), + [sym_type] = ACTIONS(754), + [sym_name] = ACTIONS(756), + [sym_number] = ACTIONS(754), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_qmark] = ACTIONS(754), }, [222] = { [sym_comment] = STATE(222), - [ts_builtin_sym_end] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(752), - [anon_sym_DASH_EQ] = ACTIONS(752), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_TILDE_GT] = ACTIONS(752), - [anon_sym_LT_DASH] = ACTIONS(752), - [anon_sym_LT_TILDE] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(754), - [anon_sym_AT_AT] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_in] = ACTIONS(754), - [anon_sym_EQ_TILDE] = ACTIONS(752), - [anon_sym_BANG_TILDE] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(752), - [anon_sym_BANG_EQ] = ACTIONS(752), - [anon_sym_EQ_EQ] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_LT_EQ] = ACTIONS(752), - [anon_sym_and] = ACTIONS(754), - [anon_sym_or] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(752), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_if] = ACTIONS(754), - [anon_sym_unless] = ACTIONS(754), - [anon_sym_case] = ACTIONS(754), - [anon_sym_LT_PIPE] = ACTIONS(752), - [anon_sym_LT_LT_PIPE] = ACTIONS(752), - [anon_sym_define] = ACTIONS(754), - [anon_sym_plan] = ACTIONS(754), - [anon_sym_apply] = ACTIONS(754), - [anon_sym_class] = ACTIONS(754), - [anon_sym_node] = ACTIONS(754), - [anon_sym_function] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_private] = ACTIONS(754), - [anon_sym_attr] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [anon_sym_AT_LPAREN] = ACTIONS(752), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_undef] = ACTIONS(754), - [anon_sym_include] = ACTIONS(754), - [anon_sym_require] = ACTIONS(754), - [anon_sym_contain] = ACTIONS(754), - [anon_sym_tag] = ACTIONS(754), - [anon_sym_debug] = ACTIONS(754), - [anon_sym_info] = ACTIONS(754), - [anon_sym_notice] = ACTIONS(754), - [anon_sym_warning] = ACTIONS(754), - [anon_sym_err] = ACTIONS(754), - [anon_sym_fail] = ACTIONS(754), - [sym_type] = ACTIONS(752), - [sym_name] = ACTIONS(754), - [sym_number] = ACTIONS(752), - [sym_true] = ACTIONS(754), - [sym_false] = ACTIONS(754), - [sym_qmark] = ACTIONS(752), - }, - [223] = { - [sym_comment] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), [anon_sym_LBRACE] = ACTIONS(758), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), [anon_sym_EQ] = ACTIONS(760), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_TILDE_GT] = ACTIONS(756), - [anon_sym_LT_DASH] = ACTIONS(756), - [anon_sym_LT_TILDE] = ACTIONS(756), + [anon_sym_PLUS_EQ] = ACTIONS(758), + [anon_sym_DASH_EQ] = ACTIONS(758), + [anon_sym_DASH_GT] = ACTIONS(758), + [anon_sym_TILDE_GT] = ACTIONS(758), + [anon_sym_LT_DASH] = ACTIONS(758), + [anon_sym_LT_TILDE] = ACTIONS(758), [anon_sym_AT] = ACTIONS(760), - [anon_sym_AT_AT] = ACTIONS(756), + [anon_sym_AT_AT] = ACTIONS(758), [anon_sym_BANG] = ACTIONS(760), [anon_sym_DASH] = ACTIONS(760), - [anon_sym_STAR] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(758), [anon_sym_in] = ACTIONS(760), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), [anon_sym_LT_LT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(758), [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(758), [anon_sym_and] = ACTIONS(760), [anon_sym_or] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), [anon_sym_if] = ACTIONS(760), [anon_sym_unless] = ACTIONS(760), [anon_sym_case] = ACTIONS(760), - [anon_sym_LT_PIPE] = ACTIONS(756), - [anon_sym_LT_LT_PIPE] = ACTIONS(756), + [anon_sym_LT_PIPE] = ACTIONS(758), + [anon_sym_LT_LT_PIPE] = ACTIONS(758), [anon_sym_define] = ACTIONS(760), [anon_sym_plan] = ACTIONS(760), [anon_sym_apply] = ACTIONS(760), @@ -26287,12 +26353,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_node] = ACTIONS(760), [anon_sym_function] = ACTIONS(760), [anon_sym_type] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(758), [anon_sym_private] = ACTIONS(760), [anon_sym_attr] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_AT_LPAREN] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_AT_LPAREN] = ACTIONS(758), [anon_sym_POUND] = ACTIONS(3), [anon_sym_LBRACK2] = ACTIONS(760), [anon_sym_default] = ACTIONS(760), @@ -26307,63 +26373,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_warning] = ACTIONS(760), [anon_sym_err] = ACTIONS(760), [anon_sym_fail] = ACTIONS(760), - [sym_type] = ACTIONS(756), + [sym_type] = ACTIONS(758), [sym_name] = ACTIONS(760), - [sym_number] = ACTIONS(756), + [sym_number] = ACTIONS(758), [sym_true] = ACTIONS(760), [sym_false] = ACTIONS(760), - [sym_qmark] = ACTIONS(756), + [sym_qmark] = ACTIONS(758), + }, + [223] = { + [sym_comment] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_COMMA] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_PLUS_EQ] = ACTIONS(762), + [anon_sym_DASH_EQ] = ACTIONS(762), + [anon_sym_DASH_GT] = ACTIONS(762), + [anon_sym_TILDE_GT] = ACTIONS(762), + [anon_sym_LT_DASH] = ACTIONS(762), + [anon_sym_LT_TILDE] = ACTIONS(762), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_AT_AT] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_in] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(762), + [anon_sym_BANG_TILDE] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_BANG_EQ] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(762), + [anon_sym_and] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_if] = ACTIONS(764), + [anon_sym_unless] = ACTIONS(764), + [anon_sym_case] = ACTIONS(764), + [anon_sym_LT_PIPE] = ACTIONS(762), + [anon_sym_LT_LT_PIPE] = ACTIONS(762), + [anon_sym_define] = ACTIONS(764), + [anon_sym_plan] = ACTIONS(764), + [anon_sym_apply] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_node] = ACTIONS(764), + [anon_sym_function] = ACTIONS(764), + [anon_sym_type] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_private] = ACTIONS(764), + [anon_sym_attr] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(762), + [anon_sym_AT_LPAREN] = ACTIONS(762), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_undef] = ACTIONS(764), + [anon_sym_include] = ACTIONS(764), + [anon_sym_require] = ACTIONS(764), + [anon_sym_contain] = ACTIONS(764), + [anon_sym_tag] = ACTIONS(764), + [anon_sym_debug] = ACTIONS(764), + [anon_sym_info] = ACTIONS(764), + [anon_sym_notice] = ACTIONS(764), + [anon_sym_warning] = ACTIONS(764), + [anon_sym_err] = ACTIONS(764), + [anon_sym_fail] = ACTIONS(764), + [sym_type] = ACTIONS(762), + [sym_name] = ACTIONS(764), + [sym_number] = ACTIONS(762), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_qmark] = ACTIONS(762), }, [224] = { - [sym__assignment] = STATE(1211), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_collection_entry_keyword] = STATE(1193), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), [sym_comment] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_DASH_GT] = ACTIONS(468), + [anon_sym_TILDE_GT] = ACTIONS(468), + [anon_sym_LT_DASH] = ACTIONS(468), + [anon_sym_LT_TILDE] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_AT_AT] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_EQ_TILDE] = ACTIONS(468), + [anon_sym_BANG_TILDE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_and] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_unless] = ACTIONS(470), + [anon_sym_case] = ACTIONS(470), + [anon_sym_LT_PIPE] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_define] = ACTIONS(470), + [anon_sym_plan] = ACTIONS(470), + [anon_sym_apply] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_node] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_private] = ACTIONS(470), + [anon_sym_attr] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_AT_LPAREN] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_undef] = ACTIONS(470), + [anon_sym_include] = ACTIONS(470), + [anon_sym_require] = ACTIONS(470), + [anon_sym_contain] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_debug] = ACTIONS(470), + [anon_sym_info] = ACTIONS(470), + [anon_sym_notice] = ACTIONS(470), + [anon_sym_warning] = ACTIONS(470), + [anon_sym_err] = ACTIONS(470), + [anon_sym_fail] = ACTIONS(470), + [sym_type] = ACTIONS(468), + [sym_name] = ACTIONS(470), + [sym_number] = ACTIONS(468), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_qmark] = ACTIONS(468), + }, + [225] = { + [sym_comment] = STATE(225), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(768), + [anon_sym_PLUS_EQ] = ACTIONS(766), + [anon_sym_DASH_EQ] = ACTIONS(766), + [anon_sym_DASH_GT] = ACTIONS(766), + [anon_sym_TILDE_GT] = ACTIONS(766), + [anon_sym_LT_DASH] = ACTIONS(766), + [anon_sym_LT_TILDE] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_AT_AT] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_in] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(766), + [anon_sym_BANG_TILDE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PERCENT] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_BANG_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(766), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(766), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(766), + [anon_sym_and] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_unless] = ACTIONS(768), + [anon_sym_case] = ACTIONS(768), + [anon_sym_LT_PIPE] = ACTIONS(766), + [anon_sym_LT_LT_PIPE] = ACTIONS(766), + [anon_sym_define] = ACTIONS(768), + [anon_sym_plan] = ACTIONS(768), + [anon_sym_apply] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_node] = ACTIONS(768), + [anon_sym_function] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_private] = ACTIONS(768), + [anon_sym_attr] = ACTIONS(768), + [anon_sym_SQUOTE] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(766), + [anon_sym_AT_LPAREN] = ACTIONS(766), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_undef] = ACTIONS(768), + [anon_sym_include] = ACTIONS(768), + [anon_sym_require] = ACTIONS(768), + [anon_sym_contain] = ACTIONS(768), + [anon_sym_tag] = ACTIONS(768), + [anon_sym_debug] = ACTIONS(768), + [anon_sym_info] = ACTIONS(768), + [anon_sym_notice] = ACTIONS(768), + [anon_sym_warning] = ACTIONS(768), + [anon_sym_err] = ACTIONS(768), + [anon_sym_fail] = ACTIONS(768), + [sym_type] = ACTIONS(766), + [sym_name] = ACTIONS(768), + [sym_number] = ACTIONS(766), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_qmark] = ACTIONS(766), + }, + [226] = { + [sym_comment] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_DASH_GT] = ACTIONS(442), + [anon_sym_TILDE_GT] = ACTIONS(442), + [anon_sym_LT_DASH] = ACTIONS(442), + [anon_sym_LT_TILDE] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), + }, + [227] = { + [sym__assignment] = STATE(601), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(227), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26372,8 +26746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(147), - [anon_sym_type] = ACTIONS(149), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26390,47 +26764,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [225] = { - [sym__assignment] = STATE(608), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(225), + [228] = { + [sym__assignment] = STATE(601), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(228), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_AT] = ACTIONS(11), @@ -26465,55 +26840,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [226] = { - [sym__assignment] = STATE(1586), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(226), + [229] = { + [sym__assignment] = STATE(602), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(229), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(35), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), + }, + [230] = { + [sym__assignment] = STATE(603), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(230), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(35), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), + }, + [231] = { + [sym__assignment] = STATE(611), + [sym__relationship] = STATE(600), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(231), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(11), + [anon_sym_AT_AT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(35), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), + }, + [232] = { + [sym__assignment] = STATE(603), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(232), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26522,8 +27126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26540,55 +27144,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [227] = { - [sym__assignment] = STATE(1621), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(227), + [233] = { + [sym__assignment] = STATE(1638), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(233), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26597,8 +27202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26615,55 +27220,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [228] = { - [sym__assignment] = STATE(1571), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(228), + [234] = { + [sym__assignment] = STATE(602), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(234), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26672,8 +27278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26690,55 +27296,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [229] = { - [sym__assignment] = STATE(1638), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(229), + [235] = { + [sym__assignment] = STATE(1590), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(235), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26747,8 +27354,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26765,55 +27372,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [230] = { - [sym__assignment] = STATE(1588), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(230), + [236] = { + [sym__assignment] = STATE(1603), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(236), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26822,8 +27430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26840,130 +27448,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [231] = { - [sym_elsif] = STATE(265), - [sym_else] = STATE(323), - [sym_comment] = STATE(231), - [aux_sym_if_repeat1] = STATE(238), - [ts_builtin_sym_end] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(289), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(291), - [anon_sym_AT_AT] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_STAR] = ACTIONS(289), - [anon_sym_in] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(289), - [anon_sym_BANG_TILDE] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_SLASH] = ACTIONS(289), - [anon_sym_PERCENT] = ACTIONS(289), - [anon_sym_LT_LT] = ACTIONS(291), - [anon_sym_GT_GT] = ACTIONS(289), - [anon_sym_BANG_EQ] = ACTIONS(289), - [anon_sym_EQ_EQ] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(289), - [anon_sym_and] = ACTIONS(291), - [anon_sym_or] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_elsif] = ACTIONS(762), - [anon_sym_else] = ACTIONS(764), - [anon_sym_unless] = ACTIONS(291), - [anon_sym_case] = ACTIONS(291), - [anon_sym_LT_PIPE] = ACTIONS(289), - [anon_sym_LT_LT_PIPE] = ACTIONS(289), - [anon_sym_define] = ACTIONS(291), - [anon_sym_plan] = ACTIONS(291), - [anon_sym_apply] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_node] = ACTIONS(291), - [anon_sym_function] = ACTIONS(291), - [anon_sym_type] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(289), - [anon_sym_private] = ACTIONS(291), - [anon_sym_attr] = ACTIONS(291), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_AT_LPAREN] = ACTIONS(289), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(291), - [anon_sym_default] = ACTIONS(291), - [anon_sym_undef] = ACTIONS(291), - [anon_sym_include] = ACTIONS(291), - [anon_sym_require] = ACTIONS(291), - [anon_sym_contain] = ACTIONS(291), - [anon_sym_tag] = ACTIONS(291), - [anon_sym_debug] = ACTIONS(291), - [anon_sym_info] = ACTIONS(291), - [anon_sym_notice] = ACTIONS(291), - [anon_sym_warning] = ACTIONS(291), - [anon_sym_err] = ACTIONS(291), - [anon_sym_fail] = ACTIONS(291), - [sym_type] = ACTIONS(289), - [sym_name] = ACTIONS(291), - [sym_number] = ACTIONS(289), - [sym_true] = ACTIONS(291), - [sym_false] = ACTIONS(291), - [sym_qmark] = ACTIONS(289), - }, - [232] = { - [sym__assignment] = STATE(598), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(232), + [237] = { + [sym__assignment] = STATE(1634), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(237), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -26972,8 +27506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -26990,205 +27524,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [233] = { - [sym__assignment] = STATE(599), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(233), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(35), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), - }, - [234] = { - [sym__assignment] = STATE(598), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(234), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(35), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), - }, - [235] = { - [sym__assignment] = STATE(1626), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(235), + [238] = { + [sym__assignment] = STATE(1649), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(238), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -27197,8 +27582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -27215,130 +27600,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [236] = { - [sym__assignment] = STATE(597), - [sym__relationship] = STATE(596), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(236), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(35), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), - }, - [237] = { - [sym__assignment] = STATE(599), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(237), + [239] = { + [sym__assignment] = STATE(1656), + [sym__relationship] = STATE(1189), + [sym__resource] = STATE(587), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(239), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -27347,8 +27658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -27365,11 +27676,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [238] = { - [sym_elsif] = STATE(265), - [sym_else] = STATE(348), - [sym_comment] = STATE(238), - [aux_sym_if_repeat1] = STATE(240), + [240] = { + [sym_elsif] = STATE(270), + [sym_else] = STATE(343), + [sym_comment] = STATE(240), + [aux_sym_if_repeat1] = STATE(241), + [ts_builtin_sym_end] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(319), + [anon_sym_AT] = ACTIONS(321), + [anon_sym_AT_AT] = ACTIONS(319), + [anon_sym_BANG] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_in] = ACTIONS(321), + [anon_sym_EQ_TILDE] = ACTIONS(319), + [anon_sym_BANG_TILDE] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_PERCENT] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_BANG_EQ] = ACTIONS(319), + [anon_sym_EQ_EQ] = ACTIONS(319), + [anon_sym_GT] = ACTIONS(321), + [anon_sym_GT_EQ] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(321), + [anon_sym_LT_EQ] = ACTIONS(319), + [anon_sym_and] = ACTIONS(321), + [anon_sym_or] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_DOT] = ACTIONS(319), + [anon_sym_if] = ACTIONS(321), + [anon_sym_elsif] = ACTIONS(770), + [anon_sym_else] = ACTIONS(772), + [anon_sym_unless] = ACTIONS(321), + [anon_sym_case] = ACTIONS(321), + [anon_sym_LT_PIPE] = ACTIONS(319), + [anon_sym_LT_LT_PIPE] = ACTIONS(319), + [anon_sym_define] = ACTIONS(321), + [anon_sym_plan] = ACTIONS(321), + [anon_sym_apply] = ACTIONS(321), + [anon_sym_class] = ACTIONS(321), + [anon_sym_node] = ACTIONS(321), + [anon_sym_function] = ACTIONS(321), + [anon_sym_type] = ACTIONS(321), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_private] = ACTIONS(321), + [anon_sym_attr] = ACTIONS(321), + [anon_sym_SQUOTE] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(319), + [anon_sym_AT_LPAREN] = ACTIONS(319), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(321), + [anon_sym_default] = ACTIONS(321), + [anon_sym_undef] = ACTIONS(321), + [anon_sym_include] = ACTIONS(321), + [anon_sym_require] = ACTIONS(321), + [anon_sym_contain] = ACTIONS(321), + [anon_sym_tag] = ACTIONS(321), + [anon_sym_debug] = ACTIONS(321), + [anon_sym_info] = ACTIONS(321), + [anon_sym_notice] = ACTIONS(321), + [anon_sym_warning] = ACTIONS(321), + [anon_sym_err] = ACTIONS(321), + [anon_sym_fail] = ACTIONS(321), + [sym_type] = ACTIONS(319), + [sym_name] = ACTIONS(321), + [sym_number] = ACTIONS(319), + [sym_true] = ACTIONS(321), + [sym_false] = ACTIONS(321), + [sym_qmark] = ACTIONS(319), + }, + [241] = { + [sym_elsif] = STATE(270), + [sym_else] = STATE(379), + [sym_comment] = STATE(241), + [aux_sym_if_repeat1] = STATE(245), [ts_builtin_sym_end] = ACTIONS(303), [anon_sym_SEMI] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(303), @@ -27400,8 +27786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(303), [anon_sym_DOT] = ACTIONS(303), [anon_sym_if] = ACTIONS(305), - [anon_sym_elsif] = ACTIONS(762), - [anon_sym_else] = ACTIONS(764), + [anon_sym_elsif] = ACTIONS(770), + [anon_sym_else] = ACTIONS(772), [anon_sym_unless] = ACTIONS(305), [anon_sym_case] = ACTIONS(305), [anon_sym_LT_PIPE] = ACTIONS(303), @@ -27440,55 +27826,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(305), [sym_qmark] = ACTIONS(303), }, - [239] = { - [sym__assignment] = STATE(597), - [sym__relationship] = STATE(1177), - [sym__resource] = STATE(581), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(239), + [242] = { + [sym__resource] = STATE(590), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(641), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym__class] = STATE(1621), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(242), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), @@ -27497,8 +27882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_apply] = ACTIONS(141), [anon_sym_class] = ACTIONS(143), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -27515,119 +27900,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [240] = { - [sym_elsif] = STATE(265), - [sym_comment] = STATE(240), - [aux_sym_if_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_LBRACE] = ACTIONS(329), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(331), - [anon_sym_AT_AT] = ACTIONS(329), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_in] = ACTIONS(331), - [anon_sym_EQ_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_and] = ACTIONS(331), - [anon_sym_or] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(329), - [anon_sym_if] = ACTIONS(331), - [anon_sym_elsif] = ACTIONS(766), - [anon_sym_else] = ACTIONS(331), - [anon_sym_unless] = ACTIONS(331), - [anon_sym_case] = ACTIONS(331), - [anon_sym_LT_PIPE] = ACTIONS(329), - [anon_sym_LT_LT_PIPE] = ACTIONS(329), - [anon_sym_define] = ACTIONS(331), - [anon_sym_plan] = ACTIONS(331), - [anon_sym_apply] = ACTIONS(331), - [anon_sym_class] = ACTIONS(331), - [anon_sym_node] = ACTIONS(331), - [anon_sym_function] = ACTIONS(331), - [anon_sym_type] = ACTIONS(331), - [anon_sym_DOLLAR] = ACTIONS(329), - [anon_sym_private] = ACTIONS(331), - [anon_sym_attr] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(329), - [anon_sym_AT_LPAREN] = ACTIONS(329), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_default] = ACTIONS(331), - [anon_sym_undef] = ACTIONS(331), - [anon_sym_include] = ACTIONS(331), - [anon_sym_require] = ACTIONS(331), - [anon_sym_contain] = ACTIONS(331), - [anon_sym_tag] = ACTIONS(331), - [anon_sym_debug] = ACTIONS(331), - [anon_sym_info] = ACTIONS(331), - [anon_sym_notice] = ACTIONS(331), - [anon_sym_warning] = ACTIONS(331), - [anon_sym_err] = ACTIONS(331), - [anon_sym_fail] = ACTIONS(331), - [sym_type] = ACTIONS(329), - [sym_name] = ACTIONS(331), - [sym_number] = ACTIONS(329), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_qmark] = ACTIONS(329), - }, - [241] = { - [sym__resource] = STATE(588), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(129), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym__class] = STATE(1596), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(241), + [243] = { + [sym__resource] = STATE(590), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(135), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym__class] = STATE(1621), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(243), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_AT] = ACTIONS(11), @@ -27662,229 +27974,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [242] = { - [sym_lambda] = STATE(365), - [sym__lambda_parameter_list] = STATE(1298), - [sym_comment] = STATE(242), - [ts_builtin_sym_end] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(374), - [anon_sym_AT_AT] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_in] = ACTIONS(374), - [anon_sym_EQ_TILDE] = ACTIONS(372), - [anon_sym_BANG_TILDE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PERCENT] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_and] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(374), - [anon_sym_unless] = ACTIONS(374), - [anon_sym_case] = ACTIONS(374), - [anon_sym_LT_PIPE] = ACTIONS(372), - [anon_sym_LT_LT_PIPE] = ACTIONS(372), - [anon_sym_define] = ACTIONS(374), - [anon_sym_plan] = ACTIONS(374), - [anon_sym_apply] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_node] = ACTIONS(374), - [anon_sym_function] = ACTIONS(374), - [anon_sym_type] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(372), - [anon_sym_private] = ACTIONS(374), - [anon_sym_attr] = ACTIONS(374), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym_AT_LPAREN] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(374), - [anon_sym_default] = ACTIONS(374), - [anon_sym_undef] = ACTIONS(374), - [anon_sym_include] = ACTIONS(374), - [anon_sym_require] = ACTIONS(374), - [anon_sym_contain] = ACTIONS(374), - [anon_sym_tag] = ACTIONS(374), - [anon_sym_debug] = ACTIONS(374), - [anon_sym_info] = ACTIONS(374), - [anon_sym_notice] = ACTIONS(374), - [anon_sym_warning] = ACTIONS(374), - [anon_sym_err] = ACTIONS(374), - [anon_sym_fail] = ACTIONS(374), - [sym_type] = ACTIONS(372), - [sym_name] = ACTIONS(374), - [sym_number] = ACTIONS(372), - [sym_true] = ACTIONS(374), - [sym_false] = ACTIONS(374), - [sym_qmark] = ACTIONS(372), - }, - [243] = { - [sym__resource] = STATE(588), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(620), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym__class] = STATE(1596), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(243), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_AT] = ACTIONS(11), - [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(143), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - }, [244] = { - [sym__resource] = STATE(1627), - [sym_resource_reference] = STATE(595), - [sym_resource_type] = STATE(595), - [sym__expression] = STATE(972), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym__class] = STATE(1631), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__resource] = STATE(1589), + [sym_resource_reference] = STATE(586), + [sym_resource_type] = STATE(586), + [sym__expression] = STATE(965), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym__class] = STATE(1588), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(244), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), [anon_sym_AT] = ACTIONS(11), [anon_sym_AT_AT] = ACTIONS(13), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(783), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(788), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [245] = { - [sym_lambda] = STATE(371), - [sym__lambda_parameter_list] = STATE(1298), + [sym_elsif] = STATE(270), [sym_comment] = STATE(245), + [aux_sym_if_repeat1] = STATE(245), + [ts_builtin_sym_end] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_COMMA] = ACTIONS(355), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(357), + [anon_sym_AT_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_in] = ACTIONS(357), + [anon_sym_EQ_TILDE] = ACTIONS(355), + [anon_sym_BANG_TILDE] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(355), + [anon_sym_SLASH] = ACTIONS(355), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(355), + [anon_sym_BANG_EQ] = ACTIONS(355), + [anon_sym_EQ_EQ] = ACTIONS(355), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(355), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(355), + [anon_sym_and] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_elsif] = ACTIONS(804), + [anon_sym_else] = ACTIONS(357), + [anon_sym_unless] = ACTIONS(357), + [anon_sym_case] = ACTIONS(357), + [anon_sym_LT_PIPE] = ACTIONS(355), + [anon_sym_LT_LT_PIPE] = ACTIONS(355), + [anon_sym_define] = ACTIONS(357), + [anon_sym_plan] = ACTIONS(357), + [anon_sym_apply] = ACTIONS(357), + [anon_sym_class] = ACTIONS(357), + [anon_sym_node] = ACTIONS(357), + [anon_sym_function] = ACTIONS(357), + [anon_sym_type] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(355), + [anon_sym_private] = ACTIONS(357), + [anon_sym_attr] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(355), + [anon_sym_AT_LPAREN] = ACTIONS(355), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(357), + [anon_sym_default] = ACTIONS(357), + [anon_sym_undef] = ACTIONS(357), + [anon_sym_include] = ACTIONS(357), + [anon_sym_require] = ACTIONS(357), + [anon_sym_contain] = ACTIONS(357), + [anon_sym_tag] = ACTIONS(357), + [anon_sym_debug] = ACTIONS(357), + [anon_sym_info] = ACTIONS(357), + [anon_sym_notice] = ACTIONS(357), + [anon_sym_warning] = ACTIONS(357), + [anon_sym_err] = ACTIONS(357), + [anon_sym_fail] = ACTIONS(357), + [sym_type] = ACTIONS(355), + [sym_name] = ACTIONS(357), + [sym_number] = ACTIONS(355), + [sym_true] = ACTIONS(357), + [sym_false] = ACTIONS(357), + [sym_qmark] = ACTIONS(355), + }, + [246] = { + [sym_lambda] = STATE(309), + [sym__lambda_parameter_list] = STATE(1309), + [sym_comment] = STATE(246), + [ts_builtin_sym_end] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(370), + [anon_sym_LBRACE] = ACTIONS(370), + [anon_sym_RBRACE] = ACTIONS(370), + [anon_sym_COMMA] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(370), + [anon_sym_AT] = ACTIONS(372), + [anon_sym_AT_AT] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(372), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_in] = ACTIONS(372), + [anon_sym_EQ_TILDE] = ACTIONS(370), + [anon_sym_BANG_TILDE] = ACTIONS(370), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_LT_LT] = ACTIONS(372), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_BANG_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(370), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_GT_EQ] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(370), + [anon_sym_and] = ACTIONS(372), + [anon_sym_or] = ACTIONS(372), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(372), + [anon_sym_unless] = ACTIONS(372), + [anon_sym_case] = ACTIONS(372), + [anon_sym_LT_PIPE] = ACTIONS(370), + [anon_sym_LT_LT_PIPE] = ACTIONS(370), + [anon_sym_define] = ACTIONS(372), + [anon_sym_plan] = ACTIONS(372), + [anon_sym_apply] = ACTIONS(372), + [anon_sym_class] = ACTIONS(372), + [anon_sym_node] = ACTIONS(372), + [anon_sym_function] = ACTIONS(372), + [anon_sym_type] = ACTIONS(372), + [anon_sym_DOLLAR] = ACTIONS(370), + [anon_sym_private] = ACTIONS(372), + [anon_sym_attr] = ACTIONS(372), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_DQUOTE] = ACTIONS(370), + [anon_sym_AT_LPAREN] = ACTIONS(370), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(372), + [anon_sym_default] = ACTIONS(372), + [anon_sym_undef] = ACTIONS(372), + [anon_sym_include] = ACTIONS(372), + [anon_sym_require] = ACTIONS(372), + [anon_sym_contain] = ACTIONS(372), + [anon_sym_tag] = ACTIONS(372), + [anon_sym_debug] = ACTIONS(372), + [anon_sym_info] = ACTIONS(372), + [anon_sym_notice] = ACTIONS(372), + [anon_sym_warning] = ACTIONS(372), + [anon_sym_err] = ACTIONS(372), + [anon_sym_fail] = ACTIONS(372), + [sym_type] = ACTIONS(370), + [sym_name] = ACTIONS(372), + [sym_number] = ACTIONS(370), + [sym_true] = ACTIONS(372), + [sym_false] = ACTIONS(372), + [sym_qmark] = ACTIONS(370), + }, + [247] = { + [sym_lambda] = STATE(391), + [sym__lambda_parameter_list] = STATE(1309), + [sym_comment] = STATE(247), [ts_builtin_sym_end] = ACTIONS(380), [anon_sym_SEMI] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(380), @@ -27914,7 +28228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_or] = ACTIONS(382), [anon_sym_LBRACK] = ACTIONS(380), [anon_sym_DOT] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_if] = ACTIONS(382), [anon_sym_unless] = ACTIONS(382), [anon_sym_case] = ACTIONS(382), @@ -27954,10 +28268,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(382), [sym_qmark] = ACTIONS(380), }, - [246] = { - [sym_lambda] = STATE(299), - [sym__lambda_parameter_list] = STATE(1298), - [sym_comment] = STATE(246), + [248] = { + [sym_lambda] = STATE(356), + [sym__lambda_parameter_list] = STATE(1309), + [sym_comment] = STATE(248), + [ts_builtin_sym_end] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(378), + [anon_sym_AT_AT] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(378), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_in] = ACTIONS(378), + [anon_sym_EQ_TILDE] = ACTIONS(376), + [anon_sym_BANG_TILDE] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(376), + [anon_sym_LT_LT] = ACTIONS(378), + [anon_sym_GT_GT] = ACTIONS(376), + [anon_sym_BANG_EQ] = ACTIONS(376), + [anon_sym_EQ_EQ] = ACTIONS(376), + [anon_sym_GT] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(376), + [anon_sym_LT] = ACTIONS(378), + [anon_sym_LT_EQ] = ACTIONS(376), + [anon_sym_and] = ACTIONS(378), + [anon_sym_or] = ACTIONS(378), + [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(378), + [anon_sym_unless] = ACTIONS(378), + [anon_sym_case] = ACTIONS(378), + [anon_sym_LT_PIPE] = ACTIONS(376), + [anon_sym_LT_LT_PIPE] = ACTIONS(376), + [anon_sym_define] = ACTIONS(378), + [anon_sym_plan] = ACTIONS(378), + [anon_sym_apply] = ACTIONS(378), + [anon_sym_class] = ACTIONS(378), + [anon_sym_node] = ACTIONS(378), + [anon_sym_function] = ACTIONS(378), + [anon_sym_type] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_private] = ACTIONS(378), + [anon_sym_attr] = ACTIONS(378), + [anon_sym_SQUOTE] = ACTIONS(376), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_AT_LPAREN] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(378), + [anon_sym_default] = ACTIONS(378), + [anon_sym_undef] = ACTIONS(378), + [anon_sym_include] = ACTIONS(378), + [anon_sym_require] = ACTIONS(378), + [anon_sym_contain] = ACTIONS(378), + [anon_sym_tag] = ACTIONS(378), + [anon_sym_debug] = ACTIONS(378), + [anon_sym_info] = ACTIONS(378), + [anon_sym_notice] = ACTIONS(378), + [anon_sym_warning] = ACTIONS(378), + [anon_sym_err] = ACTIONS(378), + [anon_sym_fail] = ACTIONS(378), + [sym_type] = ACTIONS(376), + [sym_name] = ACTIONS(378), + [sym_number] = ACTIONS(376), + [sym_true] = ACTIONS(378), + [sym_false] = ACTIONS(378), + [sym_qmark] = ACTIONS(376), + }, + [249] = { + [sym_lambda] = STATE(365), + [sym__lambda_parameter_list] = STATE(1309), + [sym_comment] = STATE(249), [ts_builtin_sym_end] = ACTIONS(384), [anon_sym_SEMI] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(384), @@ -27987,7 +28374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_or] = ACTIONS(386), [anon_sym_LBRACK] = ACTIONS(384), [anon_sym_DOT] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(366), + [anon_sym_PIPE] = ACTIONS(374), [anon_sym_if] = ACTIONS(386), [anon_sym_unless] = ACTIONS(386), [anon_sym_case] = ACTIONS(386), @@ -28027,443 +28414,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(386), [sym_qmark] = ACTIONS(384), }, - [247] = { - [sym_lambda] = STATE(336), - [sym__lambda_parameter_list] = STATE(1298), - [sym_comment] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_AT] = ACTIONS(370), - [anon_sym_AT_AT] = ACTIONS(368), - [anon_sym_BANG] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_STAR] = ACTIONS(368), - [anon_sym_in] = ACTIONS(370), - [anon_sym_EQ_TILDE] = ACTIONS(368), - [anon_sym_BANG_TILDE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_SLASH] = ACTIONS(368), - [anon_sym_PERCENT] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_and] = ACTIONS(370), - [anon_sym_or] = ACTIONS(370), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(370), - [anon_sym_unless] = ACTIONS(370), - [anon_sym_case] = ACTIONS(370), - [anon_sym_LT_PIPE] = ACTIONS(368), - [anon_sym_LT_LT_PIPE] = ACTIONS(368), - [anon_sym_define] = ACTIONS(370), - [anon_sym_plan] = ACTIONS(370), - [anon_sym_apply] = ACTIONS(370), - [anon_sym_class] = ACTIONS(370), - [anon_sym_node] = ACTIONS(370), - [anon_sym_function] = ACTIONS(370), - [anon_sym_type] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(368), - [anon_sym_private] = ACTIONS(370), - [anon_sym_attr] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_AT_LPAREN] = ACTIONS(368), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(370), - [anon_sym_default] = ACTIONS(370), - [anon_sym_undef] = ACTIONS(370), - [anon_sym_include] = ACTIONS(370), - [anon_sym_require] = ACTIONS(370), - [anon_sym_contain] = ACTIONS(370), - [anon_sym_tag] = ACTIONS(370), - [anon_sym_debug] = ACTIONS(370), - [anon_sym_info] = ACTIONS(370), - [anon_sym_notice] = ACTIONS(370), - [anon_sym_warning] = ACTIONS(370), - [anon_sym_err] = ACTIONS(370), - [anon_sym_fail] = ACTIONS(370), - [sym_type] = ACTIONS(368), - [sym_name] = ACTIONS(370), - [sym_number] = ACTIONS(368), - [sym_true] = ACTIONS(370), - [sym_false] = ACTIONS(370), - [sym_qmark] = ACTIONS(368), - }, - [248] = { - [sym_lambda] = STATE(335), - [sym__lambda_parameter_list] = STATE(1298), - [sym_comment] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(362), - [anon_sym_LPAREN] = ACTIONS(362), - [anon_sym_AT] = ACTIONS(364), - [anon_sym_AT_AT] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_in] = ACTIONS(364), - [anon_sym_EQ_TILDE] = ACTIONS(362), - [anon_sym_BANG_TILDE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_SLASH] = ACTIONS(362), - [anon_sym_PERCENT] = ACTIONS(362), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(362), - [anon_sym_BANG_EQ] = ACTIONS(362), - [anon_sym_EQ_EQ] = ACTIONS(362), - [anon_sym_GT] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(362), - [anon_sym_LT] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(362), - [anon_sym_and] = ACTIONS(364), - [anon_sym_or] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(362), - [anon_sym_DOT] = ACTIONS(362), - [anon_sym_PIPE] = ACTIONS(366), - [anon_sym_if] = ACTIONS(364), - [anon_sym_unless] = ACTIONS(364), - [anon_sym_case] = ACTIONS(364), - [anon_sym_LT_PIPE] = ACTIONS(362), - [anon_sym_LT_LT_PIPE] = ACTIONS(362), - [anon_sym_define] = ACTIONS(364), - [anon_sym_plan] = ACTIONS(364), - [anon_sym_apply] = ACTIONS(364), - [anon_sym_class] = ACTIONS(364), - [anon_sym_node] = ACTIONS(364), - [anon_sym_function] = ACTIONS(364), - [anon_sym_type] = ACTIONS(364), - [anon_sym_DOLLAR] = ACTIONS(362), - [anon_sym_private] = ACTIONS(364), - [anon_sym_attr] = ACTIONS(364), - [anon_sym_SQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [anon_sym_AT_LPAREN] = ACTIONS(362), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_undef] = ACTIONS(364), - [anon_sym_include] = ACTIONS(364), - [anon_sym_require] = ACTIONS(364), - [anon_sym_contain] = ACTIONS(364), - [anon_sym_tag] = ACTIONS(364), - [anon_sym_debug] = ACTIONS(364), - [anon_sym_info] = ACTIONS(364), - [anon_sym_notice] = ACTIONS(364), - [anon_sym_warning] = ACTIONS(364), - [anon_sym_err] = ACTIONS(364), - [anon_sym_fail] = ACTIONS(364), - [sym_type] = ACTIONS(362), - [sym_name] = ACTIONS(364), - [sym_number] = ACTIONS(362), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_qmark] = ACTIONS(362), - }, - [249] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), - [sym_comment] = STATE(249), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), - }, [250] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_lambda] = STATE(387), + [sym__lambda_parameter_list] = STATE(1309), [sym_comment] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(390), + [anon_sym_AT_AT] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_in] = ACTIONS(390), + [anon_sym_EQ_TILDE] = ACTIONS(388), + [anon_sym_BANG_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_and] = ACTIONS(390), + [anon_sym_or] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(374), + [anon_sym_if] = ACTIONS(390), + [anon_sym_unless] = ACTIONS(390), + [anon_sym_case] = ACTIONS(390), + [anon_sym_LT_PIPE] = ACTIONS(388), + [anon_sym_LT_LT_PIPE] = ACTIONS(388), + [anon_sym_define] = ACTIONS(390), + [anon_sym_plan] = ACTIONS(390), + [anon_sym_apply] = ACTIONS(390), + [anon_sym_class] = ACTIONS(390), + [anon_sym_node] = ACTIONS(390), + [anon_sym_function] = ACTIONS(390), + [anon_sym_type] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_private] = ACTIONS(390), + [anon_sym_attr] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_AT_LPAREN] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_undef] = ACTIONS(390), + [anon_sym_include] = ACTIONS(390), + [anon_sym_require] = ACTIONS(390), + [anon_sym_contain] = ACTIONS(390), + [anon_sym_tag] = ACTIONS(390), + [anon_sym_debug] = ACTIONS(390), + [anon_sym_info] = ACTIONS(390), + [anon_sym_notice] = ACTIONS(390), + [anon_sym_warning] = ACTIONS(390), + [anon_sym_err] = ACTIONS(390), + [anon_sym_fail] = ACTIONS(390), + [sym_type] = ACTIONS(388), + [sym_name] = ACTIONS(390), + [sym_number] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_qmark] = ACTIONS(388), }, [251] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [252] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(252), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), }, [253] = { - [sym_else] = STATE(326), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(253), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), + }, + [254] = { + [sym_else] = STATE(345), + [sym_comment] = STATE(254), [ts_builtin_sym_end] = ACTIONS(446), [anon_sym_SEMI] = ACTIONS(446), [anon_sym_LBRACE] = ACTIONS(446), @@ -28494,7 +28736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(446), [anon_sym_DOT] = ACTIONS(446), [anon_sym_if] = ACTIONS(448), - [anon_sym_else] = ACTIONS(764), + [anon_sym_else] = ACTIONS(772), [anon_sym_unless] = ACTIONS(448), [anon_sym_case] = ACTIONS(448), [anon_sym_LT_PIPE] = ACTIONS(446), @@ -28533,2022 +28775,2945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(448), [sym_qmark] = ACTIONS(446), }, - [254] = { - [sym_comment] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_elsif] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), - }, [255] = { + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_elsif] = ACTIONS(438), - [anon_sym_else] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [256] = { + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_AT] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_in] = ACTIONS(470), - [anon_sym_EQ_TILDE] = ACTIONS(468), - [anon_sym_BANG_TILDE] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_LT_LT] = ACTIONS(470), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_BANG_EQ] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(468), - [anon_sym_and] = ACTIONS(470), - [anon_sym_or] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_if] = ACTIONS(470), - [anon_sym_elsif] = ACTIONS(470), - [anon_sym_else] = ACTIONS(470), - [anon_sym_unless] = ACTIONS(470), - [anon_sym_case] = ACTIONS(470), - [anon_sym_LT_PIPE] = ACTIONS(468), - [anon_sym_LT_LT_PIPE] = ACTIONS(468), - [anon_sym_define] = ACTIONS(470), - [anon_sym_plan] = ACTIONS(470), - [anon_sym_apply] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_node] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_type] = ACTIONS(470), - [anon_sym_DOLLAR] = ACTIONS(468), - [anon_sym_private] = ACTIONS(470), - [anon_sym_attr] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [anon_sym_AT_LPAREN] = ACTIONS(468), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(470), - [anon_sym_default] = ACTIONS(470), - [anon_sym_undef] = ACTIONS(470), - [anon_sym_include] = ACTIONS(470), - [anon_sym_require] = ACTIONS(470), - [anon_sym_contain] = ACTIONS(470), - [anon_sym_tag] = ACTIONS(470), - [anon_sym_debug] = ACTIONS(470), - [anon_sym_info] = ACTIONS(470), - [anon_sym_notice] = ACTIONS(470), - [anon_sym_warning] = ACTIONS(470), - [anon_sym_err] = ACTIONS(470), - [anon_sym_fail] = ACTIONS(470), - [sym_type] = ACTIONS(468), - [sym_name] = ACTIONS(470), - [sym_number] = ACTIONS(468), - [sym_true] = ACTIONS(470), - [sym_false] = ACTIONS(470), - [sym_qmark] = ACTIONS(468), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), }, [257] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [258] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(258), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [259] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(396), - [anon_sym_EQ_TILDE] = ACTIONS(392), - [anon_sym_BANG_TILDE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(841), }, [260] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(831), - [anon_sym_and] = ACTIONS(833), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(835), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [261] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), [sym_comment] = STATE(261), [ts_builtin_sym_end] = ACTIONS(392), [anon_sym_SEMI] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_RBRACE] = ACTIONS(392), [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(394), [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(392), [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(805), + [anon_sym_in] = ACTIONS(394), [anon_sym_EQ_TILDE] = ACTIONS(392), [anon_sym_BANG_TILDE] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(392), [anon_sym_SLASH] = ACTIONS(392), [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(394), [anon_sym_GT_GT] = ACTIONS(392), [anon_sym_BANG_EQ] = ACTIONS(392), [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(394), [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), + [anon_sym_and] = ACTIONS(394), + [anon_sym_or] = ACTIONS(394), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), + [anon_sym_if] = ACTIONS(394), + [anon_sym_elsif] = ACTIONS(394), + [anon_sym_else] = ACTIONS(394), + [anon_sym_unless] = ACTIONS(394), + [anon_sym_case] = ACTIONS(394), [anon_sym_LT_PIPE] = ACTIONS(392), [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), + [anon_sym_define] = ACTIONS(394), + [anon_sym_plan] = ACTIONS(394), + [anon_sym_apply] = ACTIONS(394), + [anon_sym_class] = ACTIONS(394), + [anon_sym_node] = ACTIONS(394), + [anon_sym_function] = ACTIONS(394), + [anon_sym_type] = ACTIONS(394), [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), + [anon_sym_private] = ACTIONS(394), + [anon_sym_attr] = ACTIONS(394), [anon_sym_SQUOTE] = ACTIONS(392), [anon_sym_DQUOTE] = ACTIONS(392), [anon_sym_AT_LPAREN] = ACTIONS(392), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), + [anon_sym_LBRACK2] = ACTIONS(394), + [anon_sym_default] = ACTIONS(394), + [anon_sym_undef] = ACTIONS(394), + [anon_sym_include] = ACTIONS(394), + [anon_sym_require] = ACTIONS(394), + [anon_sym_contain] = ACTIONS(394), + [anon_sym_tag] = ACTIONS(394), + [anon_sym_debug] = ACTIONS(394), + [anon_sym_info] = ACTIONS(394), + [anon_sym_notice] = ACTIONS(394), + [anon_sym_warning] = ACTIONS(394), + [anon_sym_err] = ACTIONS(394), + [anon_sym_fail] = ACTIONS(394), [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), + [sym_name] = ACTIONS(394), [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), + [sym_true] = ACTIONS(394), + [sym_false] = ACTIONS(394), [sym_qmark] = ACTIONS(392), }, [262] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(392), - [anon_sym_BANG_TILDE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [263] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(400), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [264] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(264), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [265] = { + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_LBRACE] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_AT] = ACTIONS(466), - [anon_sym_AT_AT] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_in] = ACTIONS(466), - [anon_sym_EQ_TILDE] = ACTIONS(464), - [anon_sym_BANG_TILDE] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(464), - [anon_sym_BANG_EQ] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(464), - [anon_sym_and] = ACTIONS(466), - [anon_sym_or] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_if] = ACTIONS(466), - [anon_sym_elsif] = ACTIONS(466), - [anon_sym_else] = ACTIONS(466), - [anon_sym_unless] = ACTIONS(466), - [anon_sym_case] = ACTIONS(466), - [anon_sym_LT_PIPE] = ACTIONS(464), - [anon_sym_LT_LT_PIPE] = ACTIONS(464), - [anon_sym_define] = ACTIONS(466), - [anon_sym_plan] = ACTIONS(466), - [anon_sym_apply] = ACTIONS(466), - [anon_sym_class] = ACTIONS(466), - [anon_sym_node] = ACTIONS(466), - [anon_sym_function] = ACTIONS(466), - [anon_sym_type] = ACTIONS(466), - [anon_sym_DOLLAR] = ACTIONS(464), - [anon_sym_private] = ACTIONS(466), - [anon_sym_attr] = ACTIONS(466), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_DQUOTE] = ACTIONS(464), - [anon_sym_AT_LPAREN] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(466), - [anon_sym_default] = ACTIONS(466), - [anon_sym_undef] = ACTIONS(466), - [anon_sym_include] = ACTIONS(466), - [anon_sym_require] = ACTIONS(466), - [anon_sym_contain] = ACTIONS(466), - [anon_sym_tag] = ACTIONS(466), - [anon_sym_debug] = ACTIONS(466), - [anon_sym_info] = ACTIONS(466), - [anon_sym_notice] = ACTIONS(466), - [anon_sym_warning] = ACTIONS(466), - [anon_sym_err] = ACTIONS(466), - [anon_sym_fail] = ACTIONS(466), - [sym_type] = ACTIONS(464), - [sym_name] = ACTIONS(466), - [sym_number] = ACTIONS(464), - [sym_true] = ACTIONS(466), - [sym_false] = ACTIONS(466), - [sym_qmark] = ACTIONS(464), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [266] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(266), - [ts_builtin_sym_end] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(434), - [anon_sym_AT_AT] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_in] = ACTIONS(434), - [anon_sym_EQ_TILDE] = ACTIONS(432), - [anon_sym_BANG_TILDE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_and] = ACTIONS(434), - [anon_sym_or] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_if] = ACTIONS(434), - [anon_sym_unless] = ACTIONS(434), - [anon_sym_case] = ACTIONS(434), - [anon_sym_LT_PIPE] = ACTIONS(432), - [anon_sym_LT_LT_PIPE] = ACTIONS(432), - [anon_sym_define] = ACTIONS(434), - [anon_sym_plan] = ACTIONS(434), - [anon_sym_apply] = ACTIONS(434), - [anon_sym_class] = ACTIONS(434), - [anon_sym_node] = ACTIONS(434), - [anon_sym_function] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_DOLLAR] = ACTIONS(432), - [anon_sym_private] = ACTIONS(434), - [anon_sym_attr] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_AT_LPAREN] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_undef] = ACTIONS(434), - [anon_sym_include] = ACTIONS(434), - [anon_sym_require] = ACTIONS(434), - [anon_sym_contain] = ACTIONS(434), - [anon_sym_tag] = ACTIONS(434), - [anon_sym_debug] = ACTIONS(434), - [anon_sym_info] = ACTIONS(434), - [anon_sym_notice] = ACTIONS(434), - [anon_sym_warning] = ACTIONS(434), - [anon_sym_err] = ACTIONS(434), - [anon_sym_fail] = ACTIONS(434), - [sym_type] = ACTIONS(432), - [sym_name] = ACTIONS(434), - [sym_number] = ACTIONS(432), - [sym_true] = ACTIONS(434), - [sym_false] = ACTIONS(434), - [sym_qmark] = ACTIONS(432), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [267] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [268] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), [sym_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_AT_AT] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_EQ_TILDE] = ACTIONS(468), + [anon_sym_BANG_TILDE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_and] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_elsif] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_unless] = ACTIONS(470), + [anon_sym_case] = ACTIONS(470), + [anon_sym_LT_PIPE] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_define] = ACTIONS(470), + [anon_sym_plan] = ACTIONS(470), + [anon_sym_apply] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_node] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_private] = ACTIONS(470), + [anon_sym_attr] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_AT_LPAREN] = ACTIONS(468), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [anon_sym_LBRACK2] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_undef] = ACTIONS(470), + [anon_sym_include] = ACTIONS(470), + [anon_sym_require] = ACTIONS(470), + [anon_sym_contain] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_debug] = ACTIONS(470), + [anon_sym_info] = ACTIONS(470), + [anon_sym_notice] = ACTIONS(470), + [anon_sym_warning] = ACTIONS(470), + [anon_sym_err] = ACTIONS(470), + [anon_sym_fail] = ACTIONS(470), + [sym_type] = ACTIONS(468), + [sym_name] = ACTIONS(470), + [sym_number] = ACTIONS(468), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_qmark] = ACTIONS(468), }, [269] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(269), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(831), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(835), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_and] = ACTIONS(843), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(841), }, [270] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), [sym_comment] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(410), + [anon_sym_AT_AT] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_in] = ACTIONS(410), + [anon_sym_EQ_TILDE] = ACTIONS(408), + [anon_sym_BANG_TILDE] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_LT_LT] = ACTIONS(410), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_BANG_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(408), + [anon_sym_and] = ACTIONS(410), + [anon_sym_or] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_if] = ACTIONS(410), + [anon_sym_elsif] = ACTIONS(410), + [anon_sym_else] = ACTIONS(410), + [anon_sym_unless] = ACTIONS(410), + [anon_sym_case] = ACTIONS(410), + [anon_sym_LT_PIPE] = ACTIONS(408), + [anon_sym_LT_LT_PIPE] = ACTIONS(408), + [anon_sym_define] = ACTIONS(410), + [anon_sym_plan] = ACTIONS(410), + [anon_sym_apply] = ACTIONS(410), + [anon_sym_class] = ACTIONS(410), + [anon_sym_node] = ACTIONS(410), + [anon_sym_function] = ACTIONS(410), + [anon_sym_type] = ACTIONS(410), + [anon_sym_DOLLAR] = ACTIONS(408), + [anon_sym_private] = ACTIONS(410), + [anon_sym_attr] = ACTIONS(410), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(408), + [anon_sym_AT_LPAREN] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(410), + [anon_sym_default] = ACTIONS(410), + [anon_sym_undef] = ACTIONS(410), + [anon_sym_include] = ACTIONS(410), + [anon_sym_require] = ACTIONS(410), + [anon_sym_contain] = ACTIONS(410), + [anon_sym_tag] = ACTIONS(410), + [anon_sym_debug] = ACTIONS(410), + [anon_sym_info] = ACTIONS(410), + [anon_sym_notice] = ACTIONS(410), + [anon_sym_warning] = ACTIONS(410), + [anon_sym_err] = ACTIONS(410), + [anon_sym_fail] = ACTIONS(410), + [sym_type] = ACTIONS(408), + [sym_name] = ACTIONS(410), + [sym_number] = ACTIONS(408), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_qmark] = ACTIONS(408), }, [271] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(841), - [anon_sym_AT_AT] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(831), - [anon_sym_and] = ACTIONS(833), - [anon_sym_or] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_DOT] = ACTIONS(847), - [anon_sym_if] = ACTIONS(841), - [anon_sym_unless] = ACTIONS(841), - [anon_sym_case] = ACTIONS(841), - [anon_sym_LT_PIPE] = ACTIONS(849), - [anon_sym_LT_LT_PIPE] = ACTIONS(851), - [anon_sym_define] = ACTIONS(841), - [anon_sym_plan] = ACTIONS(841), - [anon_sym_apply] = ACTIONS(841), - [anon_sym_class] = ACTIONS(841), - [anon_sym_node] = ACTIONS(841), - [anon_sym_function] = ACTIONS(841), - [anon_sym_type] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_private] = ACTIONS(841), - [anon_sym_attr] = ACTIONS(841), - [anon_sym_SQUOTE] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(837), - [anon_sym_AT_LPAREN] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_undef] = ACTIONS(841), - [anon_sym_include] = ACTIONS(841), - [anon_sym_require] = ACTIONS(841), - [anon_sym_contain] = ACTIONS(841), - [anon_sym_tag] = ACTIONS(841), - [anon_sym_debug] = ACTIONS(841), - [anon_sym_info] = ACTIONS(841), - [anon_sym_notice] = ACTIONS(841), - [anon_sym_warning] = ACTIONS(841), - [anon_sym_err] = ACTIONS(841), - [anon_sym_fail] = ACTIONS(841), - [sym_type] = ACTIONS(837), - [sym_name] = ACTIONS(841), - [sym_number] = ACTIONS(837), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_qmark] = ACTIONS(835), + [ts_builtin_sym_end] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_AT_AT] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_EQ_TILDE] = ACTIONS(450), + [anon_sym_BANG_TILDE] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_and] = ACTIONS(452), + [anon_sym_or] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [anon_sym_if] = ACTIONS(452), + [anon_sym_unless] = ACTIONS(452), + [anon_sym_case] = ACTIONS(452), + [anon_sym_LT_PIPE] = ACTIONS(450), + [anon_sym_LT_LT_PIPE] = ACTIONS(450), + [anon_sym_define] = ACTIONS(452), + [anon_sym_plan] = ACTIONS(452), + [anon_sym_apply] = ACTIONS(452), + [anon_sym_class] = ACTIONS(452), + [anon_sym_node] = ACTIONS(452), + [anon_sym_function] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_private] = ACTIONS(452), + [anon_sym_attr] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(450), + [anon_sym_AT_LPAREN] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_undef] = ACTIONS(452), + [anon_sym_include] = ACTIONS(452), + [anon_sym_require] = ACTIONS(452), + [anon_sym_contain] = ACTIONS(452), + [anon_sym_tag] = ACTIONS(452), + [anon_sym_debug] = ACTIONS(452), + [anon_sym_info] = ACTIONS(452), + [anon_sym_notice] = ACTIONS(452), + [anon_sym_warning] = ACTIONS(452), + [anon_sym_err] = ACTIONS(452), + [anon_sym_fail] = ACTIONS(452), + [sym_type] = ACTIONS(450), + [sym_name] = ACTIONS(452), + [sym_number] = ACTIONS(450), + [sym_true] = ACTIONS(452), + [sym_false] = ACTIONS(452), + [sym_qmark] = ACTIONS(450), }, [272] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(396), + [anon_sym_BANG_TILDE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [273] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [274] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [275] = { - [sym_selector] = STATE(303), - [sym_collect_query] = STATE(302), + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(396), - [anon_sym_AT_AT] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_and] = ACTIONS(396), - [anon_sym_or] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(392), - [anon_sym_if] = ACTIONS(396), - [anon_sym_unless] = ACTIONS(396), - [anon_sym_case] = ACTIONS(396), - [anon_sym_LT_PIPE] = ACTIONS(392), - [anon_sym_LT_LT_PIPE] = ACTIONS(392), - [anon_sym_define] = ACTIONS(396), - [anon_sym_plan] = ACTIONS(396), - [anon_sym_apply] = ACTIONS(396), - [anon_sym_class] = ACTIONS(396), - [anon_sym_node] = ACTIONS(396), - [anon_sym_function] = ACTIONS(396), - [anon_sym_type] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_private] = ACTIONS(396), - [anon_sym_attr] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_DQUOTE] = ACTIONS(392), - [anon_sym_AT_LPAREN] = ACTIONS(392), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), - [anon_sym_undef] = ACTIONS(396), - [anon_sym_include] = ACTIONS(396), - [anon_sym_require] = ACTIONS(396), - [anon_sym_contain] = ACTIONS(396), - [anon_sym_tag] = ACTIONS(396), - [anon_sym_debug] = ACTIONS(396), - [anon_sym_info] = ACTIONS(396), - [anon_sym_notice] = ACTIONS(396), - [anon_sym_warning] = ACTIONS(396), - [anon_sym_err] = ACTIONS(396), - [anon_sym_fail] = ACTIONS(396), - [sym_type] = ACTIONS(392), - [sym_name] = ACTIONS(396), - [sym_number] = ACTIONS(392), - [sym_true] = ACTIONS(396), - [sym_false] = ACTIONS(396), - [sym_qmark] = ACTIONS(392), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(400), + [anon_sym_AT_AT] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_and] = ACTIONS(400), + [anon_sym_or] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_if] = ACTIONS(400), + [anon_sym_unless] = ACTIONS(400), + [anon_sym_case] = ACTIONS(400), + [anon_sym_LT_PIPE] = ACTIONS(396), + [anon_sym_LT_LT_PIPE] = ACTIONS(396), + [anon_sym_define] = ACTIONS(400), + [anon_sym_plan] = ACTIONS(400), + [anon_sym_apply] = ACTIONS(400), + [anon_sym_class] = ACTIONS(400), + [anon_sym_node] = ACTIONS(400), + [anon_sym_function] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_private] = ACTIONS(400), + [anon_sym_attr] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_AT_LPAREN] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_undef] = ACTIONS(400), + [anon_sym_include] = ACTIONS(400), + [anon_sym_require] = ACTIONS(400), + [anon_sym_contain] = ACTIONS(400), + [anon_sym_tag] = ACTIONS(400), + [anon_sym_debug] = ACTIONS(400), + [anon_sym_info] = ACTIONS(400), + [anon_sym_notice] = ACTIONS(400), + [anon_sym_warning] = ACTIONS(400), + [anon_sym_err] = ACTIONS(400), + [anon_sym_fail] = ACTIONS(400), + [sym_type] = ACTIONS(396), + [sym_name] = ACTIONS(400), + [sym_number] = ACTIONS(396), + [sym_true] = ACTIONS(400), + [sym_false] = ACTIONS(400), + [sym_qmark] = ACTIONS(396), }, [276] = { [sym_comment] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_AT_AT] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_in] = ACTIONS(478), - [anon_sym_EQ_TILDE] = ACTIONS(476), - [anon_sym_BANG_TILDE] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_and] = ACTIONS(478), - [anon_sym_or] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_if] = ACTIONS(478), - [anon_sym_unless] = ACTIONS(478), - [anon_sym_case] = ACTIONS(478), - [anon_sym_LT_PIPE] = ACTIONS(476), - [anon_sym_LT_LT_PIPE] = ACTIONS(476), - [anon_sym_define] = ACTIONS(478), - [anon_sym_plan] = ACTIONS(478), - [anon_sym_apply] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_node] = ACTIONS(478), - [anon_sym_function] = ACTIONS(478), - [anon_sym_type] = ACTIONS(478), - [anon_sym_DOLLAR] = ACTIONS(476), - [anon_sym_private] = ACTIONS(478), - [anon_sym_attr] = ACTIONS(478), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_DQUOTE] = ACTIONS(476), - [anon_sym_AT_LPAREN] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_undef] = ACTIONS(478), - [anon_sym_include] = ACTIONS(478), - [anon_sym_require] = ACTIONS(478), - [anon_sym_contain] = ACTIONS(478), - [anon_sym_tag] = ACTIONS(478), - [anon_sym_debug] = ACTIONS(478), - [anon_sym_info] = ACTIONS(478), - [anon_sym_notice] = ACTIONS(478), - [anon_sym_warning] = ACTIONS(478), - [anon_sym_err] = ACTIONS(478), - [anon_sym_fail] = ACTIONS(478), - [sym_type] = ACTIONS(476), - [sym_name] = ACTIONS(478), - [sym_number] = ACTIONS(476), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_qmark] = ACTIONS(476), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_elsif] = ACTIONS(444), + [anon_sym_else] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), }, [277] = { + [sym_selector] = STATE(307), + [sym_collect_query] = STATE(308), [sym_comment] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(494), - [anon_sym_AT_AT] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_in] = ACTIONS(494), - [anon_sym_EQ_TILDE] = ACTIONS(490), - [anon_sym_BANG_TILDE] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_and] = ACTIONS(494), - [anon_sym_or] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(490), - [anon_sym_if] = ACTIONS(494), - [anon_sym_unless] = ACTIONS(494), - [anon_sym_case] = ACTIONS(494), - [anon_sym_LT_PIPE] = ACTIONS(490), - [anon_sym_LT_LT_PIPE] = ACTIONS(490), - [anon_sym_define] = ACTIONS(494), - [anon_sym_plan] = ACTIONS(494), - [anon_sym_apply] = ACTIONS(494), - [anon_sym_class] = ACTIONS(494), - [anon_sym_node] = ACTIONS(494), - [anon_sym_function] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(490), - [anon_sym_private] = ACTIONS(494), - [anon_sym_attr] = ACTIONS(494), - [anon_sym_SQUOTE] = ACTIONS(490), - [anon_sym_DQUOTE] = ACTIONS(490), - [anon_sym_AT_LPAREN] = ACTIONS(490), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_undef] = ACTIONS(494), - [anon_sym_include] = ACTIONS(494), - [anon_sym_require] = ACTIONS(494), - [anon_sym_contain] = ACTIONS(494), - [anon_sym_tag] = ACTIONS(494), - [anon_sym_debug] = ACTIONS(494), - [anon_sym_info] = ACTIONS(494), - [anon_sym_notice] = ACTIONS(494), - [anon_sym_warning] = ACTIONS(494), - [anon_sym_err] = ACTIONS(494), - [anon_sym_fail] = ACTIONS(494), - [sym_type] = ACTIONS(490), - [sym_name] = ACTIONS(494), - [sym_number] = ACTIONS(490), - [sym_true] = ACTIONS(494), - [sym_false] = ACTIONS(494), - [sym_qmark] = ACTIONS(490), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_AT_AT] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_in] = ACTIONS(813), + [anon_sym_EQ_TILDE] = ACTIONS(815), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_and] = ACTIONS(843), + [anon_sym_or] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_if] = ACTIONS(849), + [anon_sym_unless] = ACTIONS(849), + [anon_sym_case] = ACTIONS(849), + [anon_sym_LT_PIPE] = ACTIONS(857), + [anon_sym_LT_LT_PIPE] = ACTIONS(859), + [anon_sym_define] = ACTIONS(849), + [anon_sym_plan] = ACTIONS(849), + [anon_sym_apply] = ACTIONS(849), + [anon_sym_class] = ACTIONS(849), + [anon_sym_node] = ACTIONS(849), + [anon_sym_function] = ACTIONS(849), + [anon_sym_type] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_private] = ACTIONS(849), + [anon_sym_attr] = ACTIONS(849), + [anon_sym_SQUOTE] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_AT_LPAREN] = ACTIONS(845), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(849), + [anon_sym_default] = ACTIONS(849), + [anon_sym_undef] = ACTIONS(849), + [anon_sym_include] = ACTIONS(849), + [anon_sym_require] = ACTIONS(849), + [anon_sym_contain] = ACTIONS(849), + [anon_sym_tag] = ACTIONS(849), + [anon_sym_debug] = ACTIONS(849), + [anon_sym_info] = ACTIONS(849), + [anon_sym_notice] = ACTIONS(849), + [anon_sym_warning] = ACTIONS(849), + [anon_sym_err] = ACTIONS(849), + [anon_sym_fail] = ACTIONS(849), + [sym_type] = ACTIONS(845), + [sym_name] = ACTIONS(849), + [sym_number] = ACTIONS(845), + [sym_true] = ACTIONS(849), + [sym_false] = ACTIONS(849), + [sym_qmark] = ACTIONS(841), }, [278] = { [sym_comment] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_else] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), - }, - [279] = { - [sym_comment] = STATE(279), [ts_builtin_sym_end] = ACTIONS(472), [anon_sym_SEMI] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(472), [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(476), [anon_sym_AT_AT] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), [anon_sym_DASH] = ACTIONS(472), [anon_sym_STAR] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), + [anon_sym_in] = ACTIONS(476), [anon_sym_EQ_TILDE] = ACTIONS(472), [anon_sym_BANG_TILDE] = ACTIONS(472), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(472), [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), [anon_sym_GT_GT] = ACTIONS(472), [anon_sym_BANG_EQ] = ACTIONS(472), [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(476), [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(476), [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_and] = ACTIONS(474), - [anon_sym_or] = ACTIONS(474), + [anon_sym_and] = ACTIONS(476), + [anon_sym_or] = ACTIONS(476), [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_DOT] = ACTIONS(472), [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_unless] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_unless] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), [anon_sym_LT_PIPE] = ACTIONS(472), [anon_sym_LT_LT_PIPE] = ACTIONS(472), - [anon_sym_define] = ACTIONS(474), - [anon_sym_plan] = ACTIONS(474), - [anon_sym_apply] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_node] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), + [anon_sym_define] = ACTIONS(476), + [anon_sym_plan] = ACTIONS(476), + [anon_sym_apply] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_node] = ACTIONS(476), + [anon_sym_function] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_private] = ACTIONS(474), - [anon_sym_attr] = ACTIONS(474), + [anon_sym_private] = ACTIONS(476), + [anon_sym_attr] = ACTIONS(476), [anon_sym_SQUOTE] = ACTIONS(472), [anon_sym_DQUOTE] = ACTIONS(472), [anon_sym_AT_LPAREN] = ACTIONS(472), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_undef] = ACTIONS(474), - [anon_sym_include] = ACTIONS(474), - [anon_sym_require] = ACTIONS(474), - [anon_sym_contain] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_debug] = ACTIONS(474), - [anon_sym_info] = ACTIONS(474), - [anon_sym_notice] = ACTIONS(474), - [anon_sym_warning] = ACTIONS(474), - [anon_sym_err] = ACTIONS(474), - [anon_sym_fail] = ACTIONS(474), + [anon_sym_LBRACK2] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_undef] = ACTIONS(476), + [anon_sym_include] = ACTIONS(476), + [anon_sym_require] = ACTIONS(476), + [anon_sym_contain] = ACTIONS(476), + [anon_sym_tag] = ACTIONS(476), + [anon_sym_debug] = ACTIONS(476), + [anon_sym_info] = ACTIONS(476), + [anon_sym_notice] = ACTIONS(476), + [anon_sym_warning] = ACTIONS(476), + [anon_sym_err] = ACTIONS(476), + [anon_sym_fail] = ACTIONS(476), [sym_type] = ACTIONS(472), - [sym_name] = ACTIONS(474), + [sym_name] = ACTIONS(476), [sym_number] = ACTIONS(472), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), [sym_qmark] = ACTIONS(472), }, + [279] = { + [sym_resource_body] = STATE(1485), + [sym_resource_title] = STATE(1614), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(279), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, [280] = { + [sym_resource_body] = STATE(1447), + [sym_resource_title] = STATE(1614), + [sym__resource_bodies] = STATE(1519), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [281] = { + [sym_resource_body] = STATE(1447), + [sym_resource_title] = STATE(1614), + [sym__resource_bodies] = STATE(1442), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(482), - [anon_sym_AT_AT] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_in] = ACTIONS(482), - [anon_sym_EQ_TILDE] = ACTIONS(480), - [anon_sym_BANG_TILDE] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_and] = ACTIONS(482), - [anon_sym_or] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_if] = ACTIONS(482), - [anon_sym_unless] = ACTIONS(482), - [anon_sym_case] = ACTIONS(482), - [anon_sym_LT_PIPE] = ACTIONS(480), - [anon_sym_LT_LT_PIPE] = ACTIONS(480), - [anon_sym_define] = ACTIONS(482), - [anon_sym_plan] = ACTIONS(482), - [anon_sym_apply] = ACTIONS(482), - [anon_sym_class] = ACTIONS(482), - [anon_sym_node] = ACTIONS(482), - [anon_sym_function] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_private] = ACTIONS(482), - [anon_sym_attr] = ACTIONS(482), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(480), - [anon_sym_AT_LPAREN] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(482), - [anon_sym_default] = ACTIONS(482), - [anon_sym_undef] = ACTIONS(482), - [anon_sym_include] = ACTIONS(482), - [anon_sym_require] = ACTIONS(482), - [anon_sym_contain] = ACTIONS(482), - [anon_sym_tag] = ACTIONS(482), - [anon_sym_debug] = ACTIONS(482), - [anon_sym_info] = ACTIONS(482), - [anon_sym_notice] = ACTIONS(482), - [anon_sym_warning] = ACTIONS(482), - [anon_sym_err] = ACTIONS(482), - [anon_sym_fail] = ACTIONS(482), - [sym_type] = ACTIONS(480), - [sym_name] = ACTIONS(482), - [sym_number] = ACTIONS(480), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_qmark] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [282] = { - [sym_hash] = STATE(285), + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(289), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(282), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [283] = { + [sym_comment] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(490), + [anon_sym_AT_AT] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_in] = ACTIONS(490), + [anon_sym_EQ_TILDE] = ACTIONS(488), + [anon_sym_BANG_TILDE] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_and] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_if] = ACTIONS(490), + [anon_sym_unless] = ACTIONS(490), + [anon_sym_case] = ACTIONS(490), + [anon_sym_LT_PIPE] = ACTIONS(488), + [anon_sym_LT_LT_PIPE] = ACTIONS(488), + [anon_sym_define] = ACTIONS(490), + [anon_sym_plan] = ACTIONS(490), + [anon_sym_apply] = ACTIONS(490), + [anon_sym_class] = ACTIONS(490), + [anon_sym_node] = ACTIONS(490), + [anon_sym_function] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_private] = ACTIONS(490), + [anon_sym_attr] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_AT_LPAREN] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_undef] = ACTIONS(490), + [anon_sym_include] = ACTIONS(490), + [anon_sym_require] = ACTIONS(490), + [anon_sym_contain] = ACTIONS(490), + [anon_sym_tag] = ACTIONS(490), + [anon_sym_debug] = ACTIONS(490), + [anon_sym_info] = ACTIONS(490), + [anon_sym_notice] = ACTIONS(490), + [anon_sym_warning] = ACTIONS(490), + [anon_sym_err] = ACTIONS(490), + [anon_sym_fail] = ACTIONS(490), + [sym_type] = ACTIONS(488), + [sym_name] = ACTIONS(490), + [sym_number] = ACTIONS(488), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_qmark] = ACTIONS(488), + }, + [284] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(284), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [285] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(285), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [286] = { + [sym_comment] = STATE(286), + [ts_builtin_sym_end] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_AT_AT] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_EQ_TILDE] = ACTIONS(468), + [anon_sym_BANG_TILDE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_and] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_else] = ACTIONS(470), + [anon_sym_unless] = ACTIONS(470), + [anon_sym_case] = ACTIONS(470), + [anon_sym_LT_PIPE] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_define] = ACTIONS(470), + [anon_sym_plan] = ACTIONS(470), + [anon_sym_apply] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_node] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_private] = ACTIONS(470), + [anon_sym_attr] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_AT_LPAREN] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_undef] = ACTIONS(470), + [anon_sym_include] = ACTIONS(470), + [anon_sym_require] = ACTIONS(470), + [anon_sym_contain] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_debug] = ACTIONS(470), + [anon_sym_info] = ACTIONS(470), + [anon_sym_notice] = ACTIONS(470), + [anon_sym_warning] = ACTIONS(470), + [anon_sym_err] = ACTIONS(470), + [anon_sym_fail] = ACTIONS(470), + [sym_type] = ACTIONS(468), + [sym_name] = ACTIONS(470), + [sym_number] = ACTIONS(468), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_qmark] = ACTIONS(468), + }, + [287] = { + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_else] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), + }, + [288] = { + [sym_resource_body] = STATE(1485), + [sym_resource_title] = STATE(1614), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(288), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [289] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(289), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [290] = { + [sym_resource_body] = STATE(1485), + [sym_resource_title] = STATE(1614), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(290), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [291] = { + [sym_resource_body] = STATE(1485), + [sym_resource_title] = STATE(1614), + [sym__expression] = STATE(937), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(291), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [292] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(295), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(292), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [293] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(285), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(293), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [294] = { + [sym_hash] = STATE(304), + [sym_comment] = STATE(294), + [ts_builtin_sym_end] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_AT_AT] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_in] = ACTIONS(494), + [anon_sym_EQ_TILDE] = ACTIONS(492), + [anon_sym_BANG_TILDE] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_and] = ACTIONS(494), + [anon_sym_or] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_if] = ACTIONS(494), + [anon_sym_unless] = ACTIONS(494), + [anon_sym_case] = ACTIONS(494), + [anon_sym_LT_PIPE] = ACTIONS(492), + [anon_sym_LT_LT_PIPE] = ACTIONS(492), + [anon_sym_define] = ACTIONS(494), + [anon_sym_plan] = ACTIONS(494), + [anon_sym_apply] = ACTIONS(494), + [anon_sym_class] = ACTIONS(494), + [anon_sym_node] = ACTIONS(494), + [anon_sym_function] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_private] = ACTIONS(494), + [anon_sym_attr] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_AT_LPAREN] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_undef] = ACTIONS(494), + [anon_sym_include] = ACTIONS(494), + [anon_sym_require] = ACTIONS(494), + [anon_sym_contain] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_debug] = ACTIONS(494), + [anon_sym_info] = ACTIONS(494), + [anon_sym_notice] = ACTIONS(494), + [anon_sym_warning] = ACTIONS(494), + [anon_sym_err] = ACTIONS(494), + [anon_sym_fail] = ACTIONS(494), + [sym_type] = ACTIONS(492), + [sym_name] = ACTIONS(494), + [sym_number] = ACTIONS(492), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_qmark] = ACTIONS(492), + }, + [295] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(295), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [296] = { + [sym_comment] = STATE(296), [ts_builtin_sym_end] = ACTIONS(484), [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(484), [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_COMMA] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(484), @@ -30573,8 +31738,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(484), [anon_sym_and] = ACTIONS(486), [anon_sym_or] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_DOT] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), [anon_sym_if] = ACTIONS(486), [anon_sym_unless] = ACTIONS(486), [anon_sym_case] = ACTIONS(486), @@ -30614,1619 +31780,2045 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(486), [sym_qmark] = ACTIONS(484), }, - [283] = { - [sym_comment] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_AT_AT] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), - [anon_sym_EQ_TILDE] = ACTIONS(472), - [anon_sym_BANG_TILDE] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_and] = ACTIONS(474), - [anon_sym_or] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_unless] = ACTIONS(474), - [anon_sym_case] = ACTIONS(474), - [anon_sym_LT_PIPE] = ACTIONS(472), - [anon_sym_LT_LT_PIPE] = ACTIONS(472), - [anon_sym_define] = ACTIONS(474), - [anon_sym_plan] = ACTIONS(474), - [anon_sym_apply] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_node] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_private] = ACTIONS(474), - [anon_sym_attr] = ACTIONS(474), - [anon_sym_SQUOTE] = ACTIONS(472), - [anon_sym_DQUOTE] = ACTIONS(472), - [anon_sym_AT_LPAREN] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_undef] = ACTIONS(474), - [anon_sym_include] = ACTIONS(474), - [anon_sym_require] = ACTIONS(474), - [anon_sym_contain] = ACTIONS(474), - [anon_sym_tag] = ACTIONS(474), - [anon_sym_debug] = ACTIONS(474), - [anon_sym_info] = ACTIONS(474), - [anon_sym_notice] = ACTIONS(474), - [anon_sym_warning] = ACTIONS(474), - [anon_sym_err] = ACTIONS(474), - [anon_sym_fail] = ACTIONS(474), - [sym_type] = ACTIONS(472), - [sym_name] = ACTIONS(474), - [sym_number] = ACTIONS(472), - [sym_true] = ACTIONS(474), - [sym_false] = ACTIONS(474), - [sym_qmark] = ACTIONS(472), - }, - [284] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(686), - [anon_sym_SEMI] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(686), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(686), - [anon_sym_AT] = ACTIONS(688), - [anon_sym_AT_AT] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_in] = ACTIONS(688), - [anon_sym_EQ_TILDE] = ACTIONS(686), - [anon_sym_BANG_TILDE] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(688), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(688), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_and] = ACTIONS(688), - [anon_sym_or] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(688), - [anon_sym_unless] = ACTIONS(688), - [anon_sym_case] = ACTIONS(688), - [anon_sym_LT_PIPE] = ACTIONS(686), - [anon_sym_LT_LT_PIPE] = ACTIONS(686), - [anon_sym_define] = ACTIONS(688), - [anon_sym_plan] = ACTIONS(688), - [anon_sym_apply] = ACTIONS(688), - [anon_sym_class] = ACTIONS(688), - [anon_sym_node] = ACTIONS(688), - [anon_sym_function] = ACTIONS(688), - [anon_sym_type] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(686), - [anon_sym_private] = ACTIONS(688), - [anon_sym_attr] = ACTIONS(688), - [anon_sym_SQUOTE] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [anon_sym_AT_LPAREN] = ACTIONS(686), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(688), - [anon_sym_default] = ACTIONS(688), - [anon_sym_undef] = ACTIONS(688), - [anon_sym_include] = ACTIONS(688), - [anon_sym_require] = ACTIONS(688), - [anon_sym_contain] = ACTIONS(688), - [anon_sym_tag] = ACTIONS(688), - [anon_sym_debug] = ACTIONS(688), - [anon_sym_info] = ACTIONS(688), - [anon_sym_notice] = ACTIONS(688), - [anon_sym_warning] = ACTIONS(688), - [anon_sym_err] = ACTIONS(688), - [anon_sym_fail] = ACTIONS(688), - [sym_type] = ACTIONS(686), - [sym_name] = ACTIONS(688), - [sym_number] = ACTIONS(686), - [sym_true] = ACTIONS(688), - [sym_false] = ACTIONS(688), - [sym_qmark] = ACTIONS(686), - }, - [285] = { - [sym_comment] = STATE(285), - [ts_builtin_sym_end] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(628), - [anon_sym_AT_AT] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_in] = ACTIONS(628), - [anon_sym_EQ_TILDE] = ACTIONS(626), - [anon_sym_BANG_TILDE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(628), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_BANG_EQ] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(626), - [anon_sym_and] = ACTIONS(628), - [anon_sym_or] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_unless] = ACTIONS(628), - [anon_sym_case] = ACTIONS(628), - [anon_sym_LT_PIPE] = ACTIONS(626), - [anon_sym_LT_LT_PIPE] = ACTIONS(626), - [anon_sym_define] = ACTIONS(628), - [anon_sym_plan] = ACTIONS(628), - [anon_sym_apply] = ACTIONS(628), - [anon_sym_class] = ACTIONS(628), - [anon_sym_node] = ACTIONS(628), - [anon_sym_function] = ACTIONS(628), - [anon_sym_type] = ACTIONS(628), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_private] = ACTIONS(628), - [anon_sym_attr] = ACTIONS(628), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_AT_LPAREN] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_undef] = ACTIONS(628), - [anon_sym_include] = ACTIONS(628), - [anon_sym_require] = ACTIONS(628), - [anon_sym_contain] = ACTIONS(628), - [anon_sym_tag] = ACTIONS(628), - [anon_sym_debug] = ACTIONS(628), - [anon_sym_info] = ACTIONS(628), - [anon_sym_notice] = ACTIONS(628), - [anon_sym_warning] = ACTIONS(628), - [anon_sym_err] = ACTIONS(628), - [anon_sym_fail] = ACTIONS(628), - [sym_type] = ACTIONS(626), - [sym_name] = ACTIONS(628), - [sym_number] = ACTIONS(626), - [sym_true] = ACTIONS(628), - [sym_false] = ACTIONS(628), - [sym_qmark] = ACTIONS(626), + [297] = { + [sym_comment] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_AT_AT] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_in] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(498), + [anon_sym_BANG_TILDE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_and] = ACTIONS(500), + [anon_sym_or] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_unless] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_LT_PIPE] = ACTIONS(498), + [anon_sym_LT_LT_PIPE] = ACTIONS(498), + [anon_sym_define] = ACTIONS(500), + [anon_sym_plan] = ACTIONS(500), + [anon_sym_apply] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_node] = ACTIONS(500), + [anon_sym_function] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), + [anon_sym_private] = ACTIONS(500), + [anon_sym_attr] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(498), + [anon_sym_AT_LPAREN] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_undef] = ACTIONS(500), + [anon_sym_include] = ACTIONS(500), + [anon_sym_require] = ACTIONS(500), + [anon_sym_contain] = ACTIONS(500), + [anon_sym_tag] = ACTIONS(500), + [anon_sym_debug] = ACTIONS(500), + [anon_sym_info] = ACTIONS(500), + [anon_sym_notice] = ACTIONS(500), + [anon_sym_warning] = ACTIONS(500), + [anon_sym_err] = ACTIONS(500), + [anon_sym_fail] = ACTIONS(500), + [sym_type] = ACTIONS(498), + [sym_name] = ACTIONS(500), + [sym_number] = ACTIONS(498), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_qmark] = ACTIONS(498), }, - [286] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(286), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [298] = { + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_AT_AT] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_in] = ACTIONS(500), + [anon_sym_EQ_TILDE] = ACTIONS(498), + [anon_sym_BANG_TILDE] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_LT_LT] = ACTIONS(500), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_BANG_EQ] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(498), + [anon_sym_and] = ACTIONS(500), + [anon_sym_or] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_unless] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_LT_PIPE] = ACTIONS(498), + [anon_sym_LT_LT_PIPE] = ACTIONS(498), + [anon_sym_define] = ACTIONS(500), + [anon_sym_plan] = ACTIONS(500), + [anon_sym_apply] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_node] = ACTIONS(500), + [anon_sym_function] = ACTIONS(500), + [anon_sym_type] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(498), + [anon_sym_private] = ACTIONS(500), + [anon_sym_attr] = ACTIONS(500), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(498), + [anon_sym_AT_LPAREN] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_undef] = ACTIONS(500), + [anon_sym_include] = ACTIONS(500), + [anon_sym_require] = ACTIONS(500), + [anon_sym_contain] = ACTIONS(500), + [anon_sym_tag] = ACTIONS(500), + [anon_sym_debug] = ACTIONS(500), + [anon_sym_info] = ACTIONS(500), + [anon_sym_notice] = ACTIONS(500), + [anon_sym_warning] = ACTIONS(500), + [anon_sym_err] = ACTIONS(500), + [anon_sym_fail] = ACTIONS(500), + [sym_type] = ACTIONS(498), + [sym_name] = ACTIONS(500), + [sym_number] = ACTIONS(498), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_qmark] = ACTIONS(498), }, - [287] = { - [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_AT] = ACTIONS(648), - [anon_sym_AT_AT] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_in] = ACTIONS(648), - [anon_sym_EQ_TILDE] = ACTIONS(646), - [anon_sym_BANG_TILDE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(648), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_and] = ACTIONS(648), - [anon_sym_or] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_if] = ACTIONS(648), - [anon_sym_unless] = ACTIONS(648), - [anon_sym_case] = ACTIONS(648), - [anon_sym_LT_PIPE] = ACTIONS(646), - [anon_sym_LT_LT_PIPE] = ACTIONS(646), - [anon_sym_define] = ACTIONS(648), - [anon_sym_plan] = ACTIONS(648), - [anon_sym_apply] = ACTIONS(648), - [anon_sym_class] = ACTIONS(648), - [anon_sym_node] = ACTIONS(648), - [anon_sym_function] = ACTIONS(648), - [anon_sym_type] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(646), - [anon_sym_private] = ACTIONS(648), - [anon_sym_attr] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(646), - [anon_sym_AT_LPAREN] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(648), - [anon_sym_default] = ACTIONS(648), - [anon_sym_undef] = ACTIONS(648), - [anon_sym_include] = ACTIONS(648), - [anon_sym_require] = ACTIONS(648), - [anon_sym_contain] = ACTIONS(648), - [anon_sym_tag] = ACTIONS(648), - [anon_sym_debug] = ACTIONS(648), - [anon_sym_info] = ACTIONS(648), - [anon_sym_notice] = ACTIONS(648), - [anon_sym_warning] = ACTIONS(648), - [anon_sym_err] = ACTIONS(648), - [anon_sym_fail] = ACTIONS(648), - [sym_type] = ACTIONS(646), - [sym_name] = ACTIONS(648), - [sym_number] = ACTIONS(646), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_qmark] = ACTIONS(646), + [299] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(300), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(299), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [288] = { - [sym_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(596), - [anon_sym_AT_AT] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_in] = ACTIONS(596), - [anon_sym_EQ_TILDE] = ACTIONS(594), - [anon_sym_BANG_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_and] = ACTIONS(596), - [anon_sym_or] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_if] = ACTIONS(596), - [anon_sym_unless] = ACTIONS(596), - [anon_sym_case] = ACTIONS(596), - [anon_sym_LT_PIPE] = ACTIONS(594), - [anon_sym_LT_LT_PIPE] = ACTIONS(594), - [anon_sym_define] = ACTIONS(596), - [anon_sym_plan] = ACTIONS(596), - [anon_sym_apply] = ACTIONS(596), - [anon_sym_class] = ACTIONS(596), - [anon_sym_node] = ACTIONS(596), - [anon_sym_function] = ACTIONS(596), - [anon_sym_type] = ACTIONS(596), - [anon_sym_DOLLAR] = ACTIONS(594), - [anon_sym_private] = ACTIONS(596), - [anon_sym_attr] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(594), - [anon_sym_AT_LPAREN] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_undef] = ACTIONS(596), - [anon_sym_include] = ACTIONS(596), - [anon_sym_require] = ACTIONS(596), - [anon_sym_contain] = ACTIONS(596), - [anon_sym_tag] = ACTIONS(596), - [anon_sym_debug] = ACTIONS(596), - [anon_sym_info] = ACTIONS(596), - [anon_sym_notice] = ACTIONS(596), - [anon_sym_warning] = ACTIONS(596), - [anon_sym_err] = ACTIONS(596), - [anon_sym_fail] = ACTIONS(596), - [sym_type] = ACTIONS(594), - [sym_name] = ACTIONS(596), - [sym_number] = ACTIONS(594), - [sym_true] = ACTIONS(596), - [sym_false] = ACTIONS(596), - [sym_qmark] = ACTIONS(594), + [300] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(300), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [289] = { - [sym_comment] = STATE(289), - [ts_builtin_sym_end] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), - [anon_sym_AT_AT] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_in] = ACTIONS(578), - [anon_sym_EQ_TILDE] = ACTIONS(576), - [anon_sym_BANG_TILDE] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_and] = ACTIONS(578), - [anon_sym_or] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [anon_sym_if] = ACTIONS(578), - [anon_sym_unless] = ACTIONS(578), - [anon_sym_case] = ACTIONS(578), - [anon_sym_LT_PIPE] = ACTIONS(576), - [anon_sym_LT_LT_PIPE] = ACTIONS(576), - [anon_sym_define] = ACTIONS(578), - [anon_sym_plan] = ACTIONS(578), - [anon_sym_apply] = ACTIONS(578), - [anon_sym_class] = ACTIONS(578), - [anon_sym_node] = ACTIONS(578), - [anon_sym_function] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_DOLLAR] = ACTIONS(576), - [anon_sym_private] = ACTIONS(578), - [anon_sym_attr] = ACTIONS(578), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE] = ACTIONS(576), - [anon_sym_AT_LPAREN] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(578), - [anon_sym_default] = ACTIONS(578), - [anon_sym_undef] = ACTIONS(578), - [anon_sym_include] = ACTIONS(578), - [anon_sym_require] = ACTIONS(578), - [anon_sym_contain] = ACTIONS(578), - [anon_sym_tag] = ACTIONS(578), - [anon_sym_debug] = ACTIONS(578), - [anon_sym_info] = ACTIONS(578), - [anon_sym_notice] = ACTIONS(578), - [anon_sym_warning] = ACTIONS(578), - [anon_sym_err] = ACTIONS(578), - [anon_sym_fail] = ACTIONS(578), - [sym_type] = ACTIONS(576), - [sym_name] = ACTIONS(578), - [sym_number] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_qmark] = ACTIONS(576), + [301] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(303), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(301), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [290] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(290), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [302] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__case_options] = STATE(284), + [sym_case_option] = STATE(844), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(302), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [291] = { - [sym_comment] = STATE(291), - [ts_builtin_sym_end] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(566), - [anon_sym_AT_AT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_in] = ACTIONS(566), - [anon_sym_EQ_TILDE] = ACTIONS(564), - [anon_sym_BANG_TILDE] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(566), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_and] = ACTIONS(566), - [anon_sym_or] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_if] = ACTIONS(566), - [anon_sym_unless] = ACTIONS(566), - [anon_sym_case] = ACTIONS(566), - [anon_sym_LT_PIPE] = ACTIONS(564), - [anon_sym_LT_LT_PIPE] = ACTIONS(564), - [anon_sym_define] = ACTIONS(566), - [anon_sym_plan] = ACTIONS(566), - [anon_sym_apply] = ACTIONS(566), - [anon_sym_class] = ACTIONS(566), - [anon_sym_node] = ACTIONS(566), - [anon_sym_function] = ACTIONS(566), - [anon_sym_type] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_private] = ACTIONS(566), - [anon_sym_attr] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(564), - [anon_sym_AT_LPAREN] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(566), - [anon_sym_default] = ACTIONS(566), - [anon_sym_undef] = ACTIONS(566), - [anon_sym_include] = ACTIONS(566), - [anon_sym_require] = ACTIONS(566), - [anon_sym_contain] = ACTIONS(566), - [anon_sym_tag] = ACTIONS(566), - [anon_sym_debug] = ACTIONS(566), - [anon_sym_info] = ACTIONS(566), - [anon_sym_notice] = ACTIONS(566), - [anon_sym_warning] = ACTIONS(566), - [anon_sym_err] = ACTIONS(566), - [anon_sym_fail] = ACTIONS(566), - [sym_type] = ACTIONS(564), - [sym_name] = ACTIONS(566), - [sym_number] = ACTIONS(564), - [sym_true] = ACTIONS(566), - [sym_false] = ACTIONS(566), - [sym_qmark] = ACTIONS(564), + [303] = { + [sym__expression] = STATE(855), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__expressions] = STATE(1637), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_case_option] = STATE(848), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(303), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [292] = { - [sym_comment] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(438), - [anon_sym_AT_AT] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_in] = ACTIONS(438), - [anon_sym_EQ_TILDE] = ACTIONS(436), - [anon_sym_BANG_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_and] = ACTIONS(438), - [anon_sym_or] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_if] = ACTIONS(438), - [anon_sym_unless] = ACTIONS(438), - [anon_sym_case] = ACTIONS(438), - [anon_sym_LT_PIPE] = ACTIONS(436), - [anon_sym_LT_LT_PIPE] = ACTIONS(436), - [anon_sym_define] = ACTIONS(438), - [anon_sym_plan] = ACTIONS(438), - [anon_sym_apply] = ACTIONS(438), - [anon_sym_class] = ACTIONS(438), - [anon_sym_node] = ACTIONS(438), - [anon_sym_function] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_private] = ACTIONS(438), - [anon_sym_attr] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_AT_LPAREN] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_undef] = ACTIONS(438), - [anon_sym_include] = ACTIONS(438), - [anon_sym_require] = ACTIONS(438), - [anon_sym_contain] = ACTIONS(438), - [anon_sym_tag] = ACTIONS(438), - [anon_sym_debug] = ACTIONS(438), - [anon_sym_info] = ACTIONS(438), - [anon_sym_notice] = ACTIONS(438), - [anon_sym_warning] = ACTIONS(438), - [anon_sym_err] = ACTIONS(438), - [anon_sym_fail] = ACTIONS(438), - [sym_type] = ACTIONS(436), - [sym_name] = ACTIONS(438), - [sym_number] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_qmark] = ACTIONS(436), + [304] = { + [sym_comment] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(640), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_AT_AT] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_in] = ACTIONS(642), + [anon_sym_EQ_TILDE] = ACTIONS(640), + [anon_sym_BANG_TILDE] = ACTIONS(640), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(640), + [anon_sym_PERCENT] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_and] = ACTIONS(642), + [anon_sym_or] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(640), + [anon_sym_if] = ACTIONS(642), + [anon_sym_unless] = ACTIONS(642), + [anon_sym_case] = ACTIONS(642), + [anon_sym_LT_PIPE] = ACTIONS(640), + [anon_sym_LT_LT_PIPE] = ACTIONS(640), + [anon_sym_define] = ACTIONS(642), + [anon_sym_plan] = ACTIONS(642), + [anon_sym_apply] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_node] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [anon_sym_type] = ACTIONS(642), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_private] = ACTIONS(642), + [anon_sym_attr] = ACTIONS(642), + [anon_sym_SQUOTE] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_AT_LPAREN] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_undef] = ACTIONS(642), + [anon_sym_include] = ACTIONS(642), + [anon_sym_require] = ACTIONS(642), + [anon_sym_contain] = ACTIONS(642), + [anon_sym_tag] = ACTIONS(642), + [anon_sym_debug] = ACTIONS(642), + [anon_sym_info] = ACTIONS(642), + [anon_sym_notice] = ACTIONS(642), + [anon_sym_warning] = ACTIONS(642), + [anon_sym_err] = ACTIONS(642), + [anon_sym_fail] = ACTIONS(642), + [sym_type] = ACTIONS(640), + [sym_name] = ACTIONS(642), + [sym_number] = ACTIONS(640), + [sym_true] = ACTIONS(642), + [sym_false] = ACTIONS(642), + [sym_qmark] = ACTIONS(640), }, - [293] = { - [sym_comment] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(554), - [anon_sym_AT_AT] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_in] = ACTIONS(554), - [anon_sym_EQ_TILDE] = ACTIONS(552), - [anon_sym_BANG_TILDE] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_and] = ACTIONS(554), - [anon_sym_or] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_if] = ACTIONS(554), - [anon_sym_unless] = ACTIONS(554), - [anon_sym_case] = ACTIONS(554), - [anon_sym_LT_PIPE] = ACTIONS(552), - [anon_sym_LT_LT_PIPE] = ACTIONS(552), - [anon_sym_define] = ACTIONS(554), - [anon_sym_plan] = ACTIONS(554), - [anon_sym_apply] = ACTIONS(554), - [anon_sym_class] = ACTIONS(554), - [anon_sym_node] = ACTIONS(554), - [anon_sym_function] = ACTIONS(554), - [anon_sym_type] = ACTIONS(554), - [anon_sym_DOLLAR] = ACTIONS(552), - [anon_sym_private] = ACTIONS(554), - [anon_sym_attr] = ACTIONS(554), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE] = ACTIONS(552), - [anon_sym_AT_LPAREN] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(554), - [anon_sym_default] = ACTIONS(554), - [anon_sym_undef] = ACTIONS(554), - [anon_sym_include] = ACTIONS(554), - [anon_sym_require] = ACTIONS(554), - [anon_sym_contain] = ACTIONS(554), - [anon_sym_tag] = ACTIONS(554), - [anon_sym_debug] = ACTIONS(554), - [anon_sym_info] = ACTIONS(554), - [anon_sym_notice] = ACTIONS(554), - [anon_sym_warning] = ACTIONS(554), - [anon_sym_err] = ACTIONS(554), - [anon_sym_fail] = ACTIONS(554), - [sym_type] = ACTIONS(552), - [sym_name] = ACTIONS(554), - [sym_number] = ACTIONS(552), - [sym_true] = ACTIONS(554), - [sym_false] = ACTIONS(554), - [sym_qmark] = ACTIONS(552), + [305] = { + [sym_comment] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_AT_AT] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_in] = ACTIONS(560), + [anon_sym_EQ_TILDE] = ACTIONS(558), + [anon_sym_BANG_TILDE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_and] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_unless] = ACTIONS(560), + [anon_sym_case] = ACTIONS(560), + [anon_sym_LT_PIPE] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_define] = ACTIONS(560), + [anon_sym_plan] = ACTIONS(560), + [anon_sym_apply] = ACTIONS(560), + [anon_sym_class] = ACTIONS(560), + [anon_sym_node] = ACTIONS(560), + [anon_sym_function] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(558), + [anon_sym_private] = ACTIONS(560), + [anon_sym_attr] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_AT_LPAREN] = ACTIONS(558), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_undef] = ACTIONS(560), + [anon_sym_include] = ACTIONS(560), + [anon_sym_require] = ACTIONS(560), + [anon_sym_contain] = ACTIONS(560), + [anon_sym_tag] = ACTIONS(560), + [anon_sym_debug] = ACTIONS(560), + [anon_sym_info] = ACTIONS(560), + [anon_sym_notice] = ACTIONS(560), + [anon_sym_warning] = ACTIONS(560), + [anon_sym_err] = ACTIONS(560), + [anon_sym_fail] = ACTIONS(560), + [sym_type] = ACTIONS(558), + [sym_name] = ACTIONS(560), + [sym_number] = ACTIONS(558), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_qmark] = ACTIONS(558), }, - [294] = { - [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(530), - [anon_sym_AT_AT] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_in] = ACTIONS(530), - [anon_sym_EQ_TILDE] = ACTIONS(528), - [anon_sym_BANG_TILDE] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_LT_LT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_and] = ACTIONS(530), - [anon_sym_or] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [anon_sym_if] = ACTIONS(530), - [anon_sym_unless] = ACTIONS(530), - [anon_sym_case] = ACTIONS(530), - [anon_sym_LT_PIPE] = ACTIONS(528), - [anon_sym_LT_LT_PIPE] = ACTIONS(528), - [anon_sym_define] = ACTIONS(530), - [anon_sym_plan] = ACTIONS(530), - [anon_sym_apply] = ACTIONS(530), - [anon_sym_class] = ACTIONS(530), - [anon_sym_node] = ACTIONS(530), - [anon_sym_function] = ACTIONS(530), - [anon_sym_type] = ACTIONS(530), - [anon_sym_DOLLAR] = ACTIONS(528), - [anon_sym_private] = ACTIONS(530), - [anon_sym_attr] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_DQUOTE] = ACTIONS(528), - [anon_sym_AT_LPAREN] = ACTIONS(528), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(530), - [anon_sym_default] = ACTIONS(530), - [anon_sym_undef] = ACTIONS(530), - [anon_sym_include] = ACTIONS(530), - [anon_sym_require] = ACTIONS(530), - [anon_sym_contain] = ACTIONS(530), - [anon_sym_tag] = ACTIONS(530), - [anon_sym_debug] = ACTIONS(530), - [anon_sym_info] = ACTIONS(530), - [anon_sym_notice] = ACTIONS(530), - [anon_sym_warning] = ACTIONS(530), - [anon_sym_err] = ACTIONS(530), - [anon_sym_fail] = ACTIONS(530), - [sym_type] = ACTIONS(528), - [sym_name] = ACTIONS(530), - [sym_number] = ACTIONS(528), - [sym_true] = ACTIONS(530), - [sym_false] = ACTIONS(530), - [sym_qmark] = ACTIONS(528), + [306] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_COMMA] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_AT_AT] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_in] = ACTIONS(764), + [anon_sym_EQ_TILDE] = ACTIONS(762), + [anon_sym_BANG_TILDE] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_SLASH] = ACTIONS(762), + [anon_sym_PERCENT] = ACTIONS(762), + [anon_sym_LT_LT] = ACTIONS(764), + [anon_sym_GT_GT] = ACTIONS(762), + [anon_sym_BANG_EQ] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(762), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_GT_EQ] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_LT_EQ] = ACTIONS(762), + [anon_sym_and] = ACTIONS(764), + [anon_sym_or] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_if] = ACTIONS(764), + [anon_sym_unless] = ACTIONS(764), + [anon_sym_case] = ACTIONS(764), + [anon_sym_LT_PIPE] = ACTIONS(762), + [anon_sym_LT_LT_PIPE] = ACTIONS(762), + [anon_sym_define] = ACTIONS(764), + [anon_sym_plan] = ACTIONS(764), + [anon_sym_apply] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_node] = ACTIONS(764), + [anon_sym_function] = ACTIONS(764), + [anon_sym_type] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(762), + [anon_sym_private] = ACTIONS(764), + [anon_sym_attr] = ACTIONS(764), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(762), + [anon_sym_AT_LPAREN] = ACTIONS(762), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_undef] = ACTIONS(764), + [anon_sym_include] = ACTIONS(764), + [anon_sym_require] = ACTIONS(764), + [anon_sym_contain] = ACTIONS(764), + [anon_sym_tag] = ACTIONS(764), + [anon_sym_debug] = ACTIONS(764), + [anon_sym_info] = ACTIONS(764), + [anon_sym_notice] = ACTIONS(764), + [anon_sym_warning] = ACTIONS(764), + [anon_sym_err] = ACTIONS(764), + [anon_sym_fail] = ACTIONS(764), + [sym_type] = ACTIONS(762), + [sym_name] = ACTIONS(764), + [sym_number] = ACTIONS(762), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_qmark] = ACTIONS(762), }, - [295] = { - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_AT_AT] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_in] = ACTIONS(522), - [anon_sym_EQ_TILDE] = ACTIONS(520), - [anon_sym_BANG_TILDE] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_GT_EQ] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(520), - [anon_sym_and] = ACTIONS(522), - [anon_sym_or] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_if] = ACTIONS(522), - [anon_sym_unless] = ACTIONS(522), - [anon_sym_case] = ACTIONS(522), - [anon_sym_LT_PIPE] = ACTIONS(520), - [anon_sym_LT_LT_PIPE] = ACTIONS(520), - [anon_sym_define] = ACTIONS(522), - [anon_sym_plan] = ACTIONS(522), - [anon_sym_apply] = ACTIONS(522), - [anon_sym_class] = ACTIONS(522), - [anon_sym_node] = ACTIONS(522), - [anon_sym_function] = ACTIONS(522), - [anon_sym_type] = ACTIONS(522), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_private] = ACTIONS(522), - [anon_sym_attr] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_AT_LPAREN] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(522), - [anon_sym_default] = ACTIONS(522), - [anon_sym_undef] = ACTIONS(522), - [anon_sym_include] = ACTIONS(522), - [anon_sym_require] = ACTIONS(522), - [anon_sym_contain] = ACTIONS(522), - [anon_sym_tag] = ACTIONS(522), - [anon_sym_debug] = ACTIONS(522), - [anon_sym_info] = ACTIONS(522), - [anon_sym_notice] = ACTIONS(522), - [anon_sym_warning] = ACTIONS(522), - [anon_sym_err] = ACTIONS(522), - [anon_sym_fail] = ACTIONS(522), - [sym_type] = ACTIONS(520), - [sym_name] = ACTIONS(522), - [sym_number] = ACTIONS(520), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_qmark] = ACTIONS(520), + [307] = { + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_AT_AT] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_in] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(644), + [anon_sym_PERCENT] = ACTIONS(644), + [anon_sym_LT_LT] = ACTIONS(646), + [anon_sym_GT_GT] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_and] = ACTIONS(646), + [anon_sym_or] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_DOT] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_unless] = ACTIONS(646), + [anon_sym_case] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_LT_LT_PIPE] = ACTIONS(644), + [anon_sym_define] = ACTIONS(646), + [anon_sym_plan] = ACTIONS(646), + [anon_sym_apply] = ACTIONS(646), + [anon_sym_class] = ACTIONS(646), + [anon_sym_node] = ACTIONS(646), + [anon_sym_function] = ACTIONS(646), + [anon_sym_type] = ACTIONS(646), + [anon_sym_DOLLAR] = ACTIONS(644), + [anon_sym_private] = ACTIONS(646), + [anon_sym_attr] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE] = ACTIONS(644), + [anon_sym_AT_LPAREN] = ACTIONS(644), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(646), + [anon_sym_default] = ACTIONS(646), + [anon_sym_undef] = ACTIONS(646), + [anon_sym_include] = ACTIONS(646), + [anon_sym_require] = ACTIONS(646), + [anon_sym_contain] = ACTIONS(646), + [anon_sym_tag] = ACTIONS(646), + [anon_sym_debug] = ACTIONS(646), + [anon_sym_info] = ACTIONS(646), + [anon_sym_notice] = ACTIONS(646), + [anon_sym_warning] = ACTIONS(646), + [anon_sym_err] = ACTIONS(646), + [anon_sym_fail] = ACTIONS(646), + [sym_type] = ACTIONS(644), + [sym_name] = ACTIONS(646), + [sym_number] = ACTIONS(644), + [sym_true] = ACTIONS(646), + [sym_false] = ACTIONS(646), + [sym_qmark] = ACTIONS(644), }, - [296] = { - [sym_comment] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(602), - [anon_sym_AT] = ACTIONS(604), - [anon_sym_AT_AT] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_in] = ACTIONS(604), - [anon_sym_EQ_TILDE] = ACTIONS(602), - [anon_sym_BANG_TILDE] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_BANG_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(602), - [anon_sym_and] = ACTIONS(604), - [anon_sym_or] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_unless] = ACTIONS(604), - [anon_sym_case] = ACTIONS(604), - [anon_sym_LT_PIPE] = ACTIONS(602), - [anon_sym_LT_LT_PIPE] = ACTIONS(602), - [anon_sym_define] = ACTIONS(604), - [anon_sym_plan] = ACTIONS(604), - [anon_sym_apply] = ACTIONS(604), - [anon_sym_class] = ACTIONS(604), - [anon_sym_node] = ACTIONS(604), - [anon_sym_function] = ACTIONS(604), - [anon_sym_type] = ACTIONS(604), - [anon_sym_DOLLAR] = ACTIONS(602), - [anon_sym_private] = ACTIONS(604), - [anon_sym_attr] = ACTIONS(604), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_AT_LPAREN] = ACTIONS(602), + [308] = { + [sym_comment] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(634), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(638), + [anon_sym_AT_AT] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(634), + [anon_sym_in] = ACTIONS(638), + [anon_sym_EQ_TILDE] = ACTIONS(634), + [anon_sym_BANG_TILDE] = ACTIONS(634), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(634), + [anon_sym_BANG_EQ] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_GT_EQ] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(634), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(634), + [anon_sym_DOT] = ACTIONS(634), + [anon_sym_if] = ACTIONS(638), + [anon_sym_unless] = ACTIONS(638), + [anon_sym_case] = ACTIONS(638), + [anon_sym_LT_PIPE] = ACTIONS(634), + [anon_sym_LT_LT_PIPE] = ACTIONS(634), + [anon_sym_define] = ACTIONS(638), + [anon_sym_plan] = ACTIONS(638), + [anon_sym_apply] = ACTIONS(638), + [anon_sym_class] = ACTIONS(638), + [anon_sym_node] = ACTIONS(638), + [anon_sym_function] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(634), + [anon_sym_private] = ACTIONS(638), + [anon_sym_attr] = ACTIONS(638), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_AT_LPAREN] = ACTIONS(634), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(604), - [anon_sym_default] = ACTIONS(604), - [anon_sym_undef] = ACTIONS(604), - [anon_sym_include] = ACTIONS(604), - [anon_sym_require] = ACTIONS(604), - [anon_sym_contain] = ACTIONS(604), - [anon_sym_tag] = ACTIONS(604), - [anon_sym_debug] = ACTIONS(604), - [anon_sym_info] = ACTIONS(604), - [anon_sym_notice] = ACTIONS(604), - [anon_sym_warning] = ACTIONS(604), - [anon_sym_err] = ACTIONS(604), - [anon_sym_fail] = ACTIONS(604), - [sym_type] = ACTIONS(602), - [sym_name] = ACTIONS(604), - [sym_number] = ACTIONS(602), - [sym_true] = ACTIONS(604), - [sym_false] = ACTIONS(604), - [sym_qmark] = ACTIONS(602), + [anon_sym_LBRACK2] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_undef] = ACTIONS(638), + [anon_sym_include] = ACTIONS(638), + [anon_sym_require] = ACTIONS(638), + [anon_sym_contain] = ACTIONS(638), + [anon_sym_tag] = ACTIONS(638), + [anon_sym_debug] = ACTIONS(638), + [anon_sym_info] = ACTIONS(638), + [anon_sym_notice] = ACTIONS(638), + [anon_sym_warning] = ACTIONS(638), + [anon_sym_err] = ACTIONS(638), + [anon_sym_fail] = ACTIONS(638), + [sym_type] = ACTIONS(634), + [sym_name] = ACTIONS(638), + [sym_number] = ACTIONS(634), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [sym_qmark] = ACTIONS(634), }, - [297] = { - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(514), - [anon_sym_AT_AT] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_in] = ACTIONS(514), - [anon_sym_EQ_TILDE] = ACTIONS(512), - [anon_sym_BANG_TILDE] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_and] = ACTIONS(514), - [anon_sym_or] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_if] = ACTIONS(514), - [anon_sym_unless] = ACTIONS(514), - [anon_sym_case] = ACTIONS(514), - [anon_sym_LT_PIPE] = ACTIONS(512), - [anon_sym_LT_LT_PIPE] = ACTIONS(512), - [anon_sym_define] = ACTIONS(514), - [anon_sym_plan] = ACTIONS(514), - [anon_sym_apply] = ACTIONS(514), - [anon_sym_class] = ACTIONS(514), - [anon_sym_node] = ACTIONS(514), - [anon_sym_function] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_private] = ACTIONS(514), - [anon_sym_attr] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_AT_LPAREN] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_undef] = ACTIONS(514), - [anon_sym_include] = ACTIONS(514), - [anon_sym_require] = ACTIONS(514), - [anon_sym_contain] = ACTIONS(514), - [anon_sym_tag] = ACTIONS(514), - [anon_sym_debug] = ACTIONS(514), - [anon_sym_info] = ACTIONS(514), - [anon_sym_notice] = ACTIONS(514), - [anon_sym_warning] = ACTIONS(514), - [anon_sym_err] = ACTIONS(514), - [anon_sym_fail] = ACTIONS(514), - [sym_type] = ACTIONS(512), - [sym_name] = ACTIONS(514), - [sym_number] = ACTIONS(512), - [sym_true] = ACTIONS(514), - [sym_false] = ACTIONS(514), - [sym_qmark] = ACTIONS(512), + [309] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_AT_AT] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_in] = ACTIONS(616), + [anon_sym_EQ_TILDE] = ACTIONS(614), + [anon_sym_BANG_TILDE] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_and] = ACTIONS(616), + [anon_sym_or] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_if] = ACTIONS(616), + [anon_sym_unless] = ACTIONS(616), + [anon_sym_case] = ACTIONS(616), + [anon_sym_LT_PIPE] = ACTIONS(614), + [anon_sym_LT_LT_PIPE] = ACTIONS(614), + [anon_sym_define] = ACTIONS(616), + [anon_sym_plan] = ACTIONS(616), + [anon_sym_apply] = ACTIONS(616), + [anon_sym_class] = ACTIONS(616), + [anon_sym_node] = ACTIONS(616), + [anon_sym_function] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_private] = ACTIONS(616), + [anon_sym_attr] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_AT_LPAREN] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_undef] = ACTIONS(616), + [anon_sym_include] = ACTIONS(616), + [anon_sym_require] = ACTIONS(616), + [anon_sym_contain] = ACTIONS(616), + [anon_sym_tag] = ACTIONS(616), + [anon_sym_debug] = ACTIONS(616), + [anon_sym_info] = ACTIONS(616), + [anon_sym_notice] = ACTIONS(616), + [anon_sym_warning] = ACTIONS(616), + [anon_sym_err] = ACTIONS(616), + [anon_sym_fail] = ACTIONS(616), + [sym_type] = ACTIONS(614), + [sym_name] = ACTIONS(616), + [sym_number] = ACTIONS(614), + [sym_true] = ACTIONS(616), + [sym_false] = ACTIONS(616), + [sym_qmark] = ACTIONS(614), }, - [298] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_AT_AT] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_in] = ACTIONS(586), - [anon_sym_EQ_TILDE] = ACTIONS(584), - [anon_sym_BANG_TILDE] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_and] = ACTIONS(586), - [anon_sym_or] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [anon_sym_if] = ACTIONS(586), - [anon_sym_unless] = ACTIONS(586), - [anon_sym_case] = ACTIONS(586), - [anon_sym_LT_PIPE] = ACTIONS(584), - [anon_sym_LT_LT_PIPE] = ACTIONS(584), - [anon_sym_define] = ACTIONS(586), - [anon_sym_plan] = ACTIONS(586), - [anon_sym_apply] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_node] = ACTIONS(586), - [anon_sym_function] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(584), - [anon_sym_private] = ACTIONS(586), - [anon_sym_attr] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(584), - [anon_sym_AT_LPAREN] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_undef] = ACTIONS(586), - [anon_sym_include] = ACTIONS(586), - [anon_sym_require] = ACTIONS(586), - [anon_sym_contain] = ACTIONS(586), - [anon_sym_tag] = ACTIONS(586), - [anon_sym_debug] = ACTIONS(586), - [anon_sym_info] = ACTIONS(586), - [anon_sym_notice] = ACTIONS(586), - [anon_sym_warning] = ACTIONS(586), - [anon_sym_err] = ACTIONS(586), - [anon_sym_fail] = ACTIONS(586), - [sym_type] = ACTIONS(584), - [sym_name] = ACTIONS(586), - [sym_number] = ACTIONS(584), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_qmark] = ACTIONS(584), + [310] = { + [sym_comment] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_AT_AT] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_in] = ACTIONS(524), + [anon_sym_EQ_TILDE] = ACTIONS(522), + [anon_sym_BANG_TILDE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_and] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_unless] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_LT_PIPE] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_define] = ACTIONS(524), + [anon_sym_plan] = ACTIONS(524), + [anon_sym_apply] = ACTIONS(524), + [anon_sym_class] = ACTIONS(524), + [anon_sym_node] = ACTIONS(524), + [anon_sym_function] = ACTIONS(524), + [anon_sym_type] = ACTIONS(524), + [anon_sym_DOLLAR] = ACTIONS(522), + [anon_sym_private] = ACTIONS(524), + [anon_sym_attr] = ACTIONS(524), + [anon_sym_SQUOTE] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_AT_LPAREN] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_undef] = ACTIONS(524), + [anon_sym_include] = ACTIONS(524), + [anon_sym_require] = ACTIONS(524), + [anon_sym_contain] = ACTIONS(524), + [anon_sym_tag] = ACTIONS(524), + [anon_sym_debug] = ACTIONS(524), + [anon_sym_info] = ACTIONS(524), + [anon_sym_notice] = ACTIONS(524), + [anon_sym_warning] = ACTIONS(524), + [anon_sym_err] = ACTIONS(524), + [anon_sym_fail] = ACTIONS(524), + [sym_type] = ACTIONS(522), + [sym_name] = ACTIONS(524), + [sym_number] = ACTIONS(522), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_qmark] = ACTIONS(522), }, - [299] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_RBRACE] = ACTIONS(752), - [anon_sym_COMMA] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(754), - [anon_sym_AT_AT] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_in] = ACTIONS(754), - [anon_sym_EQ_TILDE] = ACTIONS(752), - [anon_sym_BANG_TILDE] = ACTIONS(752), - [anon_sym_PLUS] = ACTIONS(752), - [anon_sym_SLASH] = ACTIONS(752), - [anon_sym_PERCENT] = ACTIONS(752), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(752), - [anon_sym_BANG_EQ] = ACTIONS(752), - [anon_sym_EQ_EQ] = ACTIONS(752), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(752), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_LT_EQ] = ACTIONS(752), - [anon_sym_and] = ACTIONS(754), - [anon_sym_or] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(752), - [anon_sym_DOT] = ACTIONS(752), - [anon_sym_if] = ACTIONS(754), - [anon_sym_unless] = ACTIONS(754), - [anon_sym_case] = ACTIONS(754), - [anon_sym_LT_PIPE] = ACTIONS(752), - [anon_sym_LT_LT_PIPE] = ACTIONS(752), - [anon_sym_define] = ACTIONS(754), - [anon_sym_plan] = ACTIONS(754), - [anon_sym_apply] = ACTIONS(754), - [anon_sym_class] = ACTIONS(754), - [anon_sym_node] = ACTIONS(754), - [anon_sym_function] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_private] = ACTIONS(754), - [anon_sym_attr] = ACTIONS(754), - [anon_sym_SQUOTE] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(752), - [anon_sym_AT_LPAREN] = ACTIONS(752), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_undef] = ACTIONS(754), - [anon_sym_include] = ACTIONS(754), - [anon_sym_require] = ACTIONS(754), - [anon_sym_contain] = ACTIONS(754), - [anon_sym_tag] = ACTIONS(754), - [anon_sym_debug] = ACTIONS(754), - [anon_sym_info] = ACTIONS(754), - [anon_sym_notice] = ACTIONS(754), - [anon_sym_warning] = ACTIONS(754), - [anon_sym_err] = ACTIONS(754), - [anon_sym_fail] = ACTIONS(754), - [sym_type] = ACTIONS(752), - [sym_name] = ACTIONS(754), - [sym_number] = ACTIONS(752), - [sym_true] = ACTIONS(754), - [sym_false] = ACTIONS(754), - [sym_qmark] = ACTIONS(752), + [311] = { + [sym_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_AT_AT] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_in] = ACTIONS(528), + [anon_sym_EQ_TILDE] = ACTIONS(526), + [anon_sym_BANG_TILDE] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_and] = ACTIONS(528), + [anon_sym_or] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_if] = ACTIONS(528), + [anon_sym_unless] = ACTIONS(528), + [anon_sym_case] = ACTIONS(528), + [anon_sym_LT_PIPE] = ACTIONS(526), + [anon_sym_LT_LT_PIPE] = ACTIONS(526), + [anon_sym_define] = ACTIONS(528), + [anon_sym_plan] = ACTIONS(528), + [anon_sym_apply] = ACTIONS(528), + [anon_sym_class] = ACTIONS(528), + [anon_sym_node] = ACTIONS(528), + [anon_sym_function] = ACTIONS(528), + [anon_sym_type] = ACTIONS(528), + [anon_sym_DOLLAR] = ACTIONS(526), + [anon_sym_private] = ACTIONS(528), + [anon_sym_attr] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(526), + [anon_sym_AT_LPAREN] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_undef] = ACTIONS(528), + [anon_sym_include] = ACTIONS(528), + [anon_sym_require] = ACTIONS(528), + [anon_sym_contain] = ACTIONS(528), + [anon_sym_tag] = ACTIONS(528), + [anon_sym_debug] = ACTIONS(528), + [anon_sym_info] = ACTIONS(528), + [anon_sym_notice] = ACTIONS(528), + [anon_sym_warning] = ACTIONS(528), + [anon_sym_err] = ACTIONS(528), + [anon_sym_fail] = ACTIONS(528), + [sym_type] = ACTIONS(526), + [sym_name] = ACTIONS(528), + [sym_number] = ACTIONS(526), + [sym_true] = ACTIONS(528), + [sym_false] = ACTIONS(528), + [sym_qmark] = ACTIONS(526), }, - [300] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(442), - [anon_sym_AT_AT] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_EQ_TILDE] = ACTIONS(440), - [anon_sym_BANG_TILDE] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_and] = ACTIONS(442), - [anon_sym_or] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_if] = ACTIONS(442), - [anon_sym_unless] = ACTIONS(442), - [anon_sym_case] = ACTIONS(442), - [anon_sym_LT_PIPE] = ACTIONS(440), - [anon_sym_LT_LT_PIPE] = ACTIONS(440), - [anon_sym_define] = ACTIONS(442), - [anon_sym_plan] = ACTIONS(442), - [anon_sym_apply] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_node] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(440), - [anon_sym_private] = ACTIONS(442), - [anon_sym_attr] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_AT_LPAREN] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_undef] = ACTIONS(442), - [anon_sym_include] = ACTIONS(442), - [anon_sym_require] = ACTIONS(442), - [anon_sym_contain] = ACTIONS(442), - [anon_sym_tag] = ACTIONS(442), - [anon_sym_debug] = ACTIONS(442), - [anon_sym_info] = ACTIONS(442), - [anon_sym_notice] = ACTIONS(442), - [anon_sym_warning] = ACTIONS(442), - [anon_sym_err] = ACTIONS(442), - [anon_sym_fail] = ACTIONS(442), - [sym_type] = ACTIONS(440), - [sym_name] = ACTIONS(442), - [sym_number] = ACTIONS(440), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_qmark] = ACTIONS(440), + [312] = { + [sym_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_AT_AT] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_in] = ACTIONS(548), + [anon_sym_EQ_TILDE] = ACTIONS(546), + [anon_sym_BANG_TILDE] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_EQ_EQ] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_and] = ACTIONS(548), + [anon_sym_or] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_if] = ACTIONS(548), + [anon_sym_unless] = ACTIONS(548), + [anon_sym_case] = ACTIONS(548), + [anon_sym_LT_PIPE] = ACTIONS(546), + [anon_sym_LT_LT_PIPE] = ACTIONS(546), + [anon_sym_define] = ACTIONS(548), + [anon_sym_plan] = ACTIONS(548), + [anon_sym_apply] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [anon_sym_node] = ACTIONS(548), + [anon_sym_function] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(546), + [anon_sym_private] = ACTIONS(548), + [anon_sym_attr] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(546), + [anon_sym_AT_LPAREN] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_undef] = ACTIONS(548), + [anon_sym_include] = ACTIONS(548), + [anon_sym_require] = ACTIONS(548), + [anon_sym_contain] = ACTIONS(548), + [anon_sym_tag] = ACTIONS(548), + [anon_sym_debug] = ACTIONS(548), + [anon_sym_info] = ACTIONS(548), + [anon_sym_notice] = ACTIONS(548), + [anon_sym_warning] = ACTIONS(548), + [anon_sym_err] = ACTIONS(548), + [anon_sym_fail] = ACTIONS(548), + [sym_type] = ACTIONS(546), + [sym_name] = ACTIONS(548), + [sym_number] = ACTIONS(546), + [sym_true] = ACTIONS(548), + [sym_false] = ACTIONS(548), + [sym_qmark] = ACTIONS(546), }, - [301] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(344), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(301), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [313] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1450), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(313), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [302] = { - [sym_comment] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(760), - [anon_sym_AT_AT] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_in] = ACTIONS(760), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(760), - [anon_sym_GT_GT] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(760), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_and] = ACTIONS(760), - [anon_sym_or] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_if] = ACTIONS(760), - [anon_sym_unless] = ACTIONS(760), - [anon_sym_case] = ACTIONS(760), - [anon_sym_LT_PIPE] = ACTIONS(756), - [anon_sym_LT_LT_PIPE] = ACTIONS(756), - [anon_sym_define] = ACTIONS(760), - [anon_sym_plan] = ACTIONS(760), - [anon_sym_apply] = ACTIONS(760), - [anon_sym_class] = ACTIONS(760), - [anon_sym_node] = ACTIONS(760), - [anon_sym_function] = ACTIONS(760), - [anon_sym_type] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_private] = ACTIONS(760), - [anon_sym_attr] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_AT_LPAREN] = ACTIONS(756), + [314] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(314), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [315] = { + [sym_comment] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_COMMA] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_AT_AT] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_in] = ACTIONS(722), + [anon_sym_EQ_TILDE] = ACTIONS(720), + [anon_sym_BANG_TILDE] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_LT_LT] = ACTIONS(722), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_BANG_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(720), + [anon_sym_GT] = ACTIONS(722), + [anon_sym_GT_EQ] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_LT_EQ] = ACTIONS(720), + [anon_sym_and] = ACTIONS(722), + [anon_sym_or] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_if] = ACTIONS(722), + [anon_sym_unless] = ACTIONS(722), + [anon_sym_case] = ACTIONS(722), + [anon_sym_LT_PIPE] = ACTIONS(720), + [anon_sym_LT_LT_PIPE] = ACTIONS(720), + [anon_sym_define] = ACTIONS(722), + [anon_sym_plan] = ACTIONS(722), + [anon_sym_apply] = ACTIONS(722), + [anon_sym_class] = ACTIONS(722), + [anon_sym_node] = ACTIONS(722), + [anon_sym_function] = ACTIONS(722), + [anon_sym_type] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(720), + [anon_sym_private] = ACTIONS(722), + [anon_sym_attr] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_AT_LPAREN] = ACTIONS(720), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(760), - [anon_sym_default] = ACTIONS(760), - [anon_sym_undef] = ACTIONS(760), - [anon_sym_include] = ACTIONS(760), - [anon_sym_require] = ACTIONS(760), - [anon_sym_contain] = ACTIONS(760), - [anon_sym_tag] = ACTIONS(760), - [anon_sym_debug] = ACTIONS(760), - [anon_sym_info] = ACTIONS(760), - [anon_sym_notice] = ACTIONS(760), - [anon_sym_warning] = ACTIONS(760), - [anon_sym_err] = ACTIONS(760), - [anon_sym_fail] = ACTIONS(760), - [sym_type] = ACTIONS(756), - [sym_name] = ACTIONS(760), - [sym_number] = ACTIONS(756), - [sym_true] = ACTIONS(760), - [sym_false] = ACTIONS(760), - [sym_qmark] = ACTIONS(756), + [anon_sym_LBRACK2] = ACTIONS(722), + [anon_sym_default] = ACTIONS(722), + [anon_sym_undef] = ACTIONS(722), + [anon_sym_include] = ACTIONS(722), + [anon_sym_require] = ACTIONS(722), + [anon_sym_contain] = ACTIONS(722), + [anon_sym_tag] = ACTIONS(722), + [anon_sym_debug] = ACTIONS(722), + [anon_sym_info] = ACTIONS(722), + [anon_sym_notice] = ACTIONS(722), + [anon_sym_warning] = ACTIONS(722), + [anon_sym_err] = ACTIONS(722), + [anon_sym_fail] = ACTIONS(722), + [sym_type] = ACTIONS(720), + [sym_name] = ACTIONS(722), + [sym_number] = ACTIONS(720), + [sym_true] = ACTIONS(722), + [sym_false] = ACTIONS(722), + [sym_qmark] = ACTIONS(720), }, - [303] = { - [sym_comment] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_COMMA] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_AT_AT] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(750), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_in] = ACTIONS(750), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_PERCENT] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(750), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(750), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(750), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_and] = ACTIONS(750), - [anon_sym_or] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_if] = ACTIONS(750), - [anon_sym_unless] = ACTIONS(750), - [anon_sym_case] = ACTIONS(750), - [anon_sym_LT_PIPE] = ACTIONS(748), - [anon_sym_LT_LT_PIPE] = ACTIONS(748), - [anon_sym_define] = ACTIONS(750), - [anon_sym_plan] = ACTIONS(750), - [anon_sym_apply] = ACTIONS(750), - [anon_sym_class] = ACTIONS(750), - [anon_sym_node] = ACTIONS(750), - [anon_sym_function] = ACTIONS(750), - [anon_sym_type] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_private] = ACTIONS(750), - [anon_sym_attr] = ACTIONS(750), - [anon_sym_SQUOTE] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [anon_sym_AT_LPAREN] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(750), - [anon_sym_default] = ACTIONS(750), - [anon_sym_undef] = ACTIONS(750), - [anon_sym_include] = ACTIONS(750), - [anon_sym_require] = ACTIONS(750), - [anon_sym_contain] = ACTIONS(750), - [anon_sym_tag] = ACTIONS(750), - [anon_sym_debug] = ACTIONS(750), - [anon_sym_info] = ACTIONS(750), - [anon_sym_notice] = ACTIONS(750), - [anon_sym_warning] = ACTIONS(750), - [anon_sym_err] = ACTIONS(750), - [anon_sym_fail] = ACTIONS(750), - [sym_type] = ACTIONS(748), - [sym_name] = ACTIONS(750), - [sym_number] = ACTIONS(748), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_qmark] = ACTIONS(748), + [316] = { + [sym_comment] = STATE(316), + [ts_builtin_sym_end] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_AT_AT] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_in] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(598), + [anon_sym_BANG_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_LT_LT] = ACTIONS(600), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_BANG_EQ] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(598), + [anon_sym_and] = ACTIONS(600), + [anon_sym_or] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [anon_sym_if] = ACTIONS(600), + [anon_sym_unless] = ACTIONS(600), + [anon_sym_case] = ACTIONS(600), + [anon_sym_LT_PIPE] = ACTIONS(598), + [anon_sym_LT_LT_PIPE] = ACTIONS(598), + [anon_sym_define] = ACTIONS(600), + [anon_sym_plan] = ACTIONS(600), + [anon_sym_apply] = ACTIONS(600), + [anon_sym_class] = ACTIONS(600), + [anon_sym_node] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [anon_sym_type] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(598), + [anon_sym_private] = ACTIONS(600), + [anon_sym_attr] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_AT_LPAREN] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_undef] = ACTIONS(600), + [anon_sym_include] = ACTIONS(600), + [anon_sym_require] = ACTIONS(600), + [anon_sym_contain] = ACTIONS(600), + [anon_sym_tag] = ACTIONS(600), + [anon_sym_debug] = ACTIONS(600), + [anon_sym_info] = ACTIONS(600), + [anon_sym_notice] = ACTIONS(600), + [anon_sym_warning] = ACTIONS(600), + [anon_sym_err] = ACTIONS(600), + [anon_sym_fail] = ACTIONS(600), + [sym_type] = ACTIONS(598), + [sym_name] = ACTIONS(600), + [sym_number] = ACTIONS(598), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_qmark] = ACTIONS(598), }, - [304] = { - [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_AT_AT] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_in] = ACTIONS(742), - [anon_sym_EQ_TILDE] = ACTIONS(740), - [anon_sym_BANG_TILDE] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(740), - [anon_sym_LT_LT] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(740), - [anon_sym_BANG_EQ] = ACTIONS(740), - [anon_sym_EQ_EQ] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(742), - [anon_sym_GT_EQ] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_LT_EQ] = ACTIONS(740), - [anon_sym_and] = ACTIONS(742), - [anon_sym_or] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_if] = ACTIONS(742), - [anon_sym_unless] = ACTIONS(742), - [anon_sym_case] = ACTIONS(742), - [anon_sym_LT_PIPE] = ACTIONS(740), - [anon_sym_LT_LT_PIPE] = ACTIONS(740), - [anon_sym_define] = ACTIONS(742), - [anon_sym_plan] = ACTIONS(742), - [anon_sym_apply] = ACTIONS(742), - [anon_sym_class] = ACTIONS(742), - [anon_sym_node] = ACTIONS(742), - [anon_sym_function] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_private] = ACTIONS(742), - [anon_sym_attr] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_AT_LPAREN] = ACTIONS(740), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(742), - [anon_sym_default] = ACTIONS(742), - [anon_sym_undef] = ACTIONS(742), - [anon_sym_include] = ACTIONS(742), - [anon_sym_require] = ACTIONS(742), - [anon_sym_contain] = ACTIONS(742), - [anon_sym_tag] = ACTIONS(742), - [anon_sym_debug] = ACTIONS(742), - [anon_sym_info] = ACTIONS(742), - [anon_sym_notice] = ACTIONS(742), - [anon_sym_warning] = ACTIONS(742), - [anon_sym_err] = ACTIONS(742), - [anon_sym_fail] = ACTIONS(742), - [sym_type] = ACTIONS(740), - [sym_name] = ACTIONS(742), - [sym_number] = ACTIONS(740), - [sym_true] = ACTIONS(742), - [sym_false] = ACTIONS(742), - [sym_qmark] = ACTIONS(740), + [317] = { + [sym_comment] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_AT_AT] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_in] = ACTIONS(556), + [anon_sym_EQ_TILDE] = ACTIONS(554), + [anon_sym_BANG_TILDE] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_and] = ACTIONS(556), + [anon_sym_or] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_unless] = ACTIONS(556), + [anon_sym_case] = ACTIONS(556), + [anon_sym_LT_PIPE] = ACTIONS(554), + [anon_sym_LT_LT_PIPE] = ACTIONS(554), + [anon_sym_define] = ACTIONS(556), + [anon_sym_plan] = ACTIONS(556), + [anon_sym_apply] = ACTIONS(556), + [anon_sym_class] = ACTIONS(556), + [anon_sym_node] = ACTIONS(556), + [anon_sym_function] = ACTIONS(556), + [anon_sym_type] = ACTIONS(556), + [anon_sym_DOLLAR] = ACTIONS(554), + [anon_sym_private] = ACTIONS(556), + [anon_sym_attr] = ACTIONS(556), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(554), + [anon_sym_AT_LPAREN] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_undef] = ACTIONS(556), + [anon_sym_include] = ACTIONS(556), + [anon_sym_require] = ACTIONS(556), + [anon_sym_contain] = ACTIONS(556), + [anon_sym_tag] = ACTIONS(556), + [anon_sym_debug] = ACTIONS(556), + [anon_sym_info] = ACTIONS(556), + [anon_sym_notice] = ACTIONS(556), + [anon_sym_warning] = ACTIONS(556), + [anon_sym_err] = ACTIONS(556), + [anon_sym_fail] = ACTIONS(556), + [sym_type] = ACTIONS(554), + [sym_name] = ACTIONS(556), + [sym_number] = ACTIONS(554), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_qmark] = ACTIONS(554), }, - [305] = { - [sym_resource_body] = STATE(1534), - [sym_resource_title] = STATE(1615), - [sym__resource_bodies] = STATE(1523), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(305), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [318] = { + [sym_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_AT_AT] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_in] = ACTIONS(540), + [anon_sym_EQ_TILDE] = ACTIONS(538), + [anon_sym_BANG_TILDE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_and] = ACTIONS(540), + [anon_sym_or] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_if] = ACTIONS(540), + [anon_sym_unless] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_LT_PIPE] = ACTIONS(538), + [anon_sym_LT_LT_PIPE] = ACTIONS(538), + [anon_sym_define] = ACTIONS(540), + [anon_sym_plan] = ACTIONS(540), + [anon_sym_apply] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [anon_sym_node] = ACTIONS(540), + [anon_sym_function] = ACTIONS(540), + [anon_sym_type] = ACTIONS(540), + [anon_sym_DOLLAR] = ACTIONS(538), + [anon_sym_private] = ACTIONS(540), + [anon_sym_attr] = ACTIONS(540), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(538), + [anon_sym_AT_LPAREN] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_undef] = ACTIONS(540), + [anon_sym_include] = ACTIONS(540), + [anon_sym_require] = ACTIONS(540), + [anon_sym_contain] = ACTIONS(540), + [anon_sym_tag] = ACTIONS(540), + [anon_sym_debug] = ACTIONS(540), + [anon_sym_info] = ACTIONS(540), + [anon_sym_notice] = ACTIONS(540), + [anon_sym_warning] = ACTIONS(540), + [anon_sym_err] = ACTIONS(540), + [anon_sym_fail] = ACTIONS(540), + [sym_type] = ACTIONS(538), + [sym_name] = ACTIONS(540), + [sym_number] = ACTIONS(538), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_qmark] = ACTIONS(538), }, - [306] = { - [sym_comment] = STATE(306), + [319] = { + [sym_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_AT_AT] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_in] = ACTIONS(572), + [anon_sym_EQ_TILDE] = ACTIONS(570), + [anon_sym_BANG_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_and] = ACTIONS(572), + [anon_sym_or] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_if] = ACTIONS(572), + [anon_sym_unless] = ACTIONS(572), + [anon_sym_case] = ACTIONS(572), + [anon_sym_LT_PIPE] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_define] = ACTIONS(572), + [anon_sym_plan] = ACTIONS(572), + [anon_sym_apply] = ACTIONS(572), + [anon_sym_class] = ACTIONS(572), + [anon_sym_node] = ACTIONS(572), + [anon_sym_function] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_private] = ACTIONS(572), + [anon_sym_attr] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [anon_sym_AT_LPAREN] = ACTIONS(570), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_undef] = ACTIONS(572), + [anon_sym_include] = ACTIONS(572), + [anon_sym_require] = ACTIONS(572), + [anon_sym_contain] = ACTIONS(572), + [anon_sym_tag] = ACTIONS(572), + [anon_sym_debug] = ACTIONS(572), + [anon_sym_info] = ACTIONS(572), + [anon_sym_notice] = ACTIONS(572), + [anon_sym_warning] = ACTIONS(572), + [anon_sym_err] = ACTIONS(572), + [anon_sym_fail] = ACTIONS(572), + [sym_type] = ACTIONS(570), + [sym_name] = ACTIONS(572), + [sym_number] = ACTIONS(570), + [sym_true] = ACTIONS(572), + [sym_false] = ACTIONS(572), + [sym_qmark] = ACTIONS(570), + }, + [320] = { + [sym_comment] = STATE(320), + [ts_builtin_sym_end] = ACTIONS(578), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_AT_AT] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(578), + [anon_sym_in] = ACTIONS(580), + [anon_sym_EQ_TILDE] = ACTIONS(578), + [anon_sym_BANG_TILDE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(578), + [anon_sym_PERCENT] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_and] = ACTIONS(580), + [anon_sym_or] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_if] = ACTIONS(580), + [anon_sym_unless] = ACTIONS(580), + [anon_sym_case] = ACTIONS(580), + [anon_sym_LT_PIPE] = ACTIONS(578), + [anon_sym_LT_LT_PIPE] = ACTIONS(578), + [anon_sym_define] = ACTIONS(580), + [anon_sym_plan] = ACTIONS(580), + [anon_sym_apply] = ACTIONS(580), + [anon_sym_class] = ACTIONS(580), + [anon_sym_node] = ACTIONS(580), + [anon_sym_function] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_private] = ACTIONS(580), + [anon_sym_attr] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(578), + [anon_sym_AT_LPAREN] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_undef] = ACTIONS(580), + [anon_sym_include] = ACTIONS(580), + [anon_sym_require] = ACTIONS(580), + [anon_sym_contain] = ACTIONS(580), + [anon_sym_tag] = ACTIONS(580), + [anon_sym_debug] = ACTIONS(580), + [anon_sym_info] = ACTIONS(580), + [anon_sym_notice] = ACTIONS(580), + [anon_sym_warning] = ACTIONS(580), + [anon_sym_err] = ACTIONS(580), + [anon_sym_fail] = ACTIONS(580), + [sym_type] = ACTIONS(578), + [sym_name] = ACTIONS(580), + [sym_number] = ACTIONS(578), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_qmark] = ACTIONS(578), + }, + [321] = { + [sym_comment] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_COMMA] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_AT_AT] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_in] = ACTIONS(588), + [anon_sym_EQ_TILDE] = ACTIONS(586), + [anon_sym_BANG_TILDE] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(586), + [anon_sym_and] = ACTIONS(588), + [anon_sym_or] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_if] = ACTIONS(588), + [anon_sym_unless] = ACTIONS(588), + [anon_sym_case] = ACTIONS(588), + [anon_sym_LT_PIPE] = ACTIONS(586), + [anon_sym_LT_LT_PIPE] = ACTIONS(586), + [anon_sym_define] = ACTIONS(588), + [anon_sym_plan] = ACTIONS(588), + [anon_sym_apply] = ACTIONS(588), + [anon_sym_class] = ACTIONS(588), + [anon_sym_node] = ACTIONS(588), + [anon_sym_function] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(586), + [anon_sym_private] = ACTIONS(588), + [anon_sym_attr] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(586), + [anon_sym_AT_LPAREN] = ACTIONS(586), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_undef] = ACTIONS(588), + [anon_sym_include] = ACTIONS(588), + [anon_sym_require] = ACTIONS(588), + [anon_sym_contain] = ACTIONS(588), + [anon_sym_tag] = ACTIONS(588), + [anon_sym_debug] = ACTIONS(588), + [anon_sym_info] = ACTIONS(588), + [anon_sym_notice] = ACTIONS(588), + [anon_sym_warning] = ACTIONS(588), + [anon_sym_err] = ACTIONS(588), + [anon_sym_fail] = ACTIONS(588), + [sym_type] = ACTIONS(586), + [sym_name] = ACTIONS(588), + [sym_number] = ACTIONS(586), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_qmark] = ACTIONS(586), + }, + [322] = { + [sym_comment] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_AT_AT] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_in] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(606), + [anon_sym_BANG_TILDE] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_and] = ACTIONS(608), + [anon_sym_or] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [anon_sym_if] = ACTIONS(608), + [anon_sym_unless] = ACTIONS(608), + [anon_sym_case] = ACTIONS(608), + [anon_sym_LT_PIPE] = ACTIONS(606), + [anon_sym_LT_LT_PIPE] = ACTIONS(606), + [anon_sym_define] = ACTIONS(608), + [anon_sym_plan] = ACTIONS(608), + [anon_sym_apply] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_node] = ACTIONS(608), + [anon_sym_function] = ACTIONS(608), + [anon_sym_type] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(606), + [anon_sym_private] = ACTIONS(608), + [anon_sym_attr] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(606), + [anon_sym_AT_LPAREN] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_undef] = ACTIONS(608), + [anon_sym_include] = ACTIONS(608), + [anon_sym_require] = ACTIONS(608), + [anon_sym_contain] = ACTIONS(608), + [anon_sym_tag] = ACTIONS(608), + [anon_sym_debug] = ACTIONS(608), + [anon_sym_info] = ACTIONS(608), + [anon_sym_notice] = ACTIONS(608), + [anon_sym_warning] = ACTIONS(608), + [anon_sym_err] = ACTIONS(608), + [anon_sym_fail] = ACTIONS(608), + [sym_type] = ACTIONS(606), + [sym_name] = ACTIONS(608), + [sym_number] = ACTIONS(606), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_qmark] = ACTIONS(606), + }, + [323] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1511), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(323), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [324] = { + [sym_comment] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(632), + [anon_sym_AT_AT] = ACTIONS(630), + [anon_sym_BANG] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_in] = ACTIONS(632), + [anon_sym_EQ_TILDE] = ACTIONS(630), + [anon_sym_BANG_TILDE] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(632), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_BANG_EQ] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(632), + [anon_sym_GT_EQ] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(632), + [anon_sym_LT_EQ] = ACTIONS(630), + [anon_sym_and] = ACTIONS(632), + [anon_sym_or] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_if] = ACTIONS(632), + [anon_sym_unless] = ACTIONS(632), + [anon_sym_case] = ACTIONS(632), + [anon_sym_LT_PIPE] = ACTIONS(630), + [anon_sym_LT_LT_PIPE] = ACTIONS(630), + [anon_sym_define] = ACTIONS(632), + [anon_sym_plan] = ACTIONS(632), + [anon_sym_apply] = ACTIONS(632), + [anon_sym_class] = ACTIONS(632), + [anon_sym_node] = ACTIONS(632), + [anon_sym_function] = ACTIONS(632), + [anon_sym_type] = ACTIONS(632), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_private] = ACTIONS(632), + [anon_sym_attr] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_AT_LPAREN] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_undef] = ACTIONS(632), + [anon_sym_include] = ACTIONS(632), + [anon_sym_require] = ACTIONS(632), + [anon_sym_contain] = ACTIONS(632), + [anon_sym_tag] = ACTIONS(632), + [anon_sym_debug] = ACTIONS(632), + [anon_sym_info] = ACTIONS(632), + [anon_sym_notice] = ACTIONS(632), + [anon_sym_warning] = ACTIONS(632), + [anon_sym_err] = ACTIONS(632), + [anon_sym_fail] = ACTIONS(632), + [sym_type] = ACTIONS(630), + [sym_name] = ACTIONS(632), + [sym_number] = ACTIONS(630), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_qmark] = ACTIONS(630), + }, + [325] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(325), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [326] = { + [sym_comment] = STATE(326), [ts_builtin_sym_end] = ACTIONS(732), [anon_sym_SEMI] = ACTIONS(732), [anon_sym_LBRACE] = ACTIONS(732), @@ -32295,568 +33887,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(734), [sym_qmark] = ACTIONS(732), }, - [307] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(360), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(307), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [327] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1427), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(327), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [308] = { - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_RBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_AT_AT] = ACTIONS(674), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_in] = ACTIONS(676), - [anon_sym_EQ_TILDE] = ACTIONS(674), - [anon_sym_BANG_TILDE] = ACTIONS(674), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_LT_LT] = ACTIONS(676), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_and] = ACTIONS(676), - [anon_sym_or] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [anon_sym_if] = ACTIONS(676), - [anon_sym_unless] = ACTIONS(676), - [anon_sym_case] = ACTIONS(676), - [anon_sym_LT_PIPE] = ACTIONS(674), - [anon_sym_LT_LT_PIPE] = ACTIONS(674), - [anon_sym_define] = ACTIONS(676), - [anon_sym_plan] = ACTIONS(676), - [anon_sym_apply] = ACTIONS(676), - [anon_sym_class] = ACTIONS(676), - [anon_sym_node] = ACTIONS(676), - [anon_sym_function] = ACTIONS(676), - [anon_sym_type] = ACTIONS(676), - [anon_sym_DOLLAR] = ACTIONS(674), - [anon_sym_private] = ACTIONS(676), - [anon_sym_attr] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_AT_LPAREN] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_undef] = ACTIONS(676), - [anon_sym_include] = ACTIONS(676), - [anon_sym_require] = ACTIONS(676), - [anon_sym_contain] = ACTIONS(676), - [anon_sym_tag] = ACTIONS(676), - [anon_sym_debug] = ACTIONS(676), - [anon_sym_info] = ACTIONS(676), - [anon_sym_notice] = ACTIONS(676), - [anon_sym_warning] = ACTIONS(676), - [anon_sym_err] = ACTIONS(676), - [anon_sym_fail] = ACTIONS(676), - [sym_type] = ACTIONS(674), - [sym_name] = ACTIONS(676), - [sym_number] = ACTIONS(674), - [sym_true] = ACTIONS(676), - [sym_false] = ACTIONS(676), - [sym_qmark] = ACTIONS(674), + [328] = { + [sym_comment] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_AT_AT] = ACTIONS(754), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_in] = ACTIONS(756), + [anon_sym_EQ_TILDE] = ACTIONS(754), + [anon_sym_BANG_TILDE] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_and] = ACTIONS(756), + [anon_sym_or] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(754), + [anon_sym_if] = ACTIONS(756), + [anon_sym_unless] = ACTIONS(756), + [anon_sym_case] = ACTIONS(756), + [anon_sym_LT_PIPE] = ACTIONS(754), + [anon_sym_LT_LT_PIPE] = ACTIONS(754), + [anon_sym_define] = ACTIONS(756), + [anon_sym_plan] = ACTIONS(756), + [anon_sym_apply] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_node] = ACTIONS(756), + [anon_sym_function] = ACTIONS(756), + [anon_sym_type] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_private] = ACTIONS(756), + [anon_sym_attr] = ACTIONS(756), + [anon_sym_SQUOTE] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_AT_LPAREN] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_undef] = ACTIONS(756), + [anon_sym_include] = ACTIONS(756), + [anon_sym_require] = ACTIONS(756), + [anon_sym_contain] = ACTIONS(756), + [anon_sym_tag] = ACTIONS(756), + [anon_sym_debug] = ACTIONS(756), + [anon_sym_info] = ACTIONS(756), + [anon_sym_notice] = ACTIONS(756), + [anon_sym_warning] = ACTIONS(756), + [anon_sym_err] = ACTIONS(756), + [anon_sym_fail] = ACTIONS(756), + [sym_type] = ACTIONS(754), + [sym_name] = ACTIONS(756), + [sym_number] = ACTIONS(754), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_qmark] = ACTIONS(754), }, - [309] = { - [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_AT_AT] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_in] = ACTIONS(486), - [anon_sym_EQ_TILDE] = ACTIONS(484), - [anon_sym_BANG_TILDE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_and] = ACTIONS(486), - [anon_sym_or] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_if] = ACTIONS(486), - [anon_sym_unless] = ACTIONS(486), - [anon_sym_case] = ACTIONS(486), - [anon_sym_LT_PIPE] = ACTIONS(484), - [anon_sym_LT_LT_PIPE] = ACTIONS(484), - [anon_sym_define] = ACTIONS(486), - [anon_sym_plan] = ACTIONS(486), - [anon_sym_apply] = ACTIONS(486), - [anon_sym_class] = ACTIONS(486), - [anon_sym_node] = ACTIONS(486), - [anon_sym_function] = ACTIONS(486), - [anon_sym_type] = ACTIONS(486), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_private] = ACTIONS(486), - [anon_sym_attr] = ACTIONS(486), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_DQUOTE] = ACTIONS(484), - [anon_sym_AT_LPAREN] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(486), - [anon_sym_default] = ACTIONS(486), - [anon_sym_undef] = ACTIONS(486), - [anon_sym_include] = ACTIONS(486), - [anon_sym_require] = ACTIONS(486), - [anon_sym_contain] = ACTIONS(486), - [anon_sym_tag] = ACTIONS(486), - [anon_sym_debug] = ACTIONS(486), - [anon_sym_info] = ACTIONS(486), - [anon_sym_notice] = ACTIONS(486), - [anon_sym_warning] = ACTIONS(486), - [anon_sym_err] = ACTIONS(486), - [anon_sym_fail] = ACTIONS(486), - [sym_type] = ACTIONS(484), - [sym_name] = ACTIONS(486), - [sym_number] = ACTIONS(484), - [sym_true] = ACTIONS(486), - [sym_false] = ACTIONS(486), - [sym_qmark] = ACTIONS(484), + [329] = { + [sym__expression] = STATE(976), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(329), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_PLUS_GT] = ACTIONS(895), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [310] = { - [sym_comment] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_in] = ACTIONS(652), - [anon_sym_EQ_TILDE] = ACTIONS(650), - [anon_sym_BANG_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_BANG_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(650), - [anon_sym_and] = ACTIONS(652), - [anon_sym_or] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_if] = ACTIONS(652), - [anon_sym_unless] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_LT_PIPE] = ACTIONS(650), - [anon_sym_LT_LT_PIPE] = ACTIONS(650), - [anon_sym_define] = ACTIONS(652), - [anon_sym_plan] = ACTIONS(652), - [anon_sym_apply] = ACTIONS(652), - [anon_sym_class] = ACTIONS(652), - [anon_sym_node] = ACTIONS(652), - [anon_sym_function] = ACTIONS(652), - [anon_sym_type] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_private] = ACTIONS(652), - [anon_sym_attr] = ACTIONS(652), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [anon_sym_AT_LPAREN] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_undef] = ACTIONS(652), - [anon_sym_include] = ACTIONS(652), - [anon_sym_require] = ACTIONS(652), - [anon_sym_contain] = ACTIONS(652), - [anon_sym_tag] = ACTIONS(652), - [anon_sym_debug] = ACTIONS(652), - [anon_sym_info] = ACTIONS(652), - [anon_sym_notice] = ACTIONS(652), - [anon_sym_warning] = ACTIONS(652), - [anon_sym_err] = ACTIONS(652), - [anon_sym_fail] = ACTIONS(652), - [sym_type] = ACTIONS(650), - [sym_name] = ACTIONS(652), - [sym_number] = ACTIONS(650), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_qmark] = ACTIONS(650), + [330] = { + [sym__expression] = STATE(865), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(330), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_PLUS_GT] = ACTIONS(895), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [311] = { - [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_AT] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_in] = ACTIONS(526), - [anon_sym_EQ_TILDE] = ACTIONS(524), - [anon_sym_BANG_TILDE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_and] = ACTIONS(526), - [anon_sym_or] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_unless] = ACTIONS(526), - [anon_sym_case] = ACTIONS(526), - [anon_sym_LT_PIPE] = ACTIONS(524), - [anon_sym_LT_LT_PIPE] = ACTIONS(524), - [anon_sym_define] = ACTIONS(526), - [anon_sym_plan] = ACTIONS(526), - [anon_sym_apply] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_node] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_type] = ACTIONS(526), - [anon_sym_DOLLAR] = ACTIONS(524), - [anon_sym_private] = ACTIONS(526), - [anon_sym_attr] = ACTIONS(526), - [anon_sym_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE] = ACTIONS(524), - [anon_sym_AT_LPAREN] = ACTIONS(524), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_undef] = ACTIONS(526), - [anon_sym_include] = ACTIONS(526), - [anon_sym_require] = ACTIONS(526), - [anon_sym_contain] = ACTIONS(526), - [anon_sym_tag] = ACTIONS(526), - [anon_sym_debug] = ACTIONS(526), - [anon_sym_info] = ACTIONS(526), - [anon_sym_notice] = ACTIONS(526), - [anon_sym_warning] = ACTIONS(526), - [anon_sym_err] = ACTIONS(526), - [anon_sym_fail] = ACTIONS(526), - [sym_type] = ACTIONS(524), - [sym_name] = ACTIONS(526), - [sym_number] = ACTIONS(524), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_qmark] = ACTIONS(524), + [331] = { + [sym__expression] = STATE(910), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(331), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_PLUS_GT] = ACTIONS(895), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [312] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(368), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(312), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [332] = { + [sym_comment] = STATE(332), + [ts_builtin_sym_end] = ACTIONS(766), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_AT_AT] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(766), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_in] = ACTIONS(768), + [anon_sym_EQ_TILDE] = ACTIONS(766), + [anon_sym_BANG_TILDE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(766), + [anon_sym_SLASH] = ACTIONS(766), + [anon_sym_PERCENT] = ACTIONS(766), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_BANG_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ] = ACTIONS(766), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(766), + [anon_sym_LT] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(766), + [anon_sym_and] = ACTIONS(768), + [anon_sym_or] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_if] = ACTIONS(768), + [anon_sym_unless] = ACTIONS(768), + [anon_sym_case] = ACTIONS(768), + [anon_sym_LT_PIPE] = ACTIONS(766), + [anon_sym_LT_LT_PIPE] = ACTIONS(766), + [anon_sym_define] = ACTIONS(768), + [anon_sym_plan] = ACTIONS(768), + [anon_sym_apply] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_node] = ACTIONS(768), + [anon_sym_function] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(766), + [anon_sym_private] = ACTIONS(768), + [anon_sym_attr] = ACTIONS(768), + [anon_sym_SQUOTE] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(766), + [anon_sym_AT_LPAREN] = ACTIONS(766), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_undef] = ACTIONS(768), + [anon_sym_include] = ACTIONS(768), + [anon_sym_require] = ACTIONS(768), + [anon_sym_contain] = ACTIONS(768), + [anon_sym_tag] = ACTIONS(768), + [anon_sym_debug] = ACTIONS(768), + [anon_sym_info] = ACTIONS(768), + [anon_sym_notice] = ACTIONS(768), + [anon_sym_warning] = ACTIONS(768), + [anon_sym_err] = ACTIONS(768), + [anon_sym_fail] = ACTIONS(768), + [sym_type] = ACTIONS(766), + [sym_name] = ACTIONS(768), + [sym_number] = ACTIONS(766), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_qmark] = ACTIONS(766), }, - [313] = { - [sym_comment] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(582), - [anon_sym_AT_AT] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_in] = ACTIONS(582), - [anon_sym_EQ_TILDE] = ACTIONS(580), - [anon_sym_BANG_TILDE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_and] = ACTIONS(582), - [anon_sym_or] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_if] = ACTIONS(582), - [anon_sym_unless] = ACTIONS(582), - [anon_sym_case] = ACTIONS(582), - [anon_sym_LT_PIPE] = ACTIONS(580), - [anon_sym_LT_LT_PIPE] = ACTIONS(580), - [anon_sym_define] = ACTIONS(582), - [anon_sym_plan] = ACTIONS(582), - [anon_sym_apply] = ACTIONS(582), - [anon_sym_class] = ACTIONS(582), - [anon_sym_node] = ACTIONS(582), - [anon_sym_function] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_private] = ACTIONS(582), - [anon_sym_attr] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_AT_LPAREN] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_undef] = ACTIONS(582), - [anon_sym_include] = ACTIONS(582), - [anon_sym_require] = ACTIONS(582), - [anon_sym_contain] = ACTIONS(582), - [anon_sym_tag] = ACTIONS(582), - [anon_sym_debug] = ACTIONS(582), - [anon_sym_info] = ACTIONS(582), - [anon_sym_notice] = ACTIONS(582), - [anon_sym_warning] = ACTIONS(582), - [anon_sym_err] = ACTIONS(582), - [anon_sym_fail] = ACTIONS(582), - [sym_type] = ACTIONS(580), - [sym_name] = ACTIONS(582), - [sym_number] = ACTIONS(580), - [sym_true] = ACTIONS(582), - [sym_false] = ACTIONS(582), - [sym_qmark] = ACTIONS(580), + [333] = { + [sym_comment] = STATE(333), + [ts_builtin_sym_end] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(726), + [anon_sym_AT_AT] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_in] = ACTIONS(726), + [anon_sym_EQ_TILDE] = ACTIONS(724), + [anon_sym_BANG_TILDE] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(724), + [anon_sym_BANG_EQ] = ACTIONS(724), + [anon_sym_EQ_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_GT_EQ] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_LT_EQ] = ACTIONS(724), + [anon_sym_and] = ACTIONS(726), + [anon_sym_or] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(724), + [anon_sym_if] = ACTIONS(726), + [anon_sym_unless] = ACTIONS(726), + [anon_sym_case] = ACTIONS(726), + [anon_sym_LT_PIPE] = ACTIONS(724), + [anon_sym_LT_LT_PIPE] = ACTIONS(724), + [anon_sym_define] = ACTIONS(726), + [anon_sym_plan] = ACTIONS(726), + [anon_sym_apply] = ACTIONS(726), + [anon_sym_class] = ACTIONS(726), + [anon_sym_node] = ACTIONS(726), + [anon_sym_function] = ACTIONS(726), + [anon_sym_type] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_private] = ACTIONS(726), + [anon_sym_attr] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_AT_LPAREN] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(726), + [anon_sym_default] = ACTIONS(726), + [anon_sym_undef] = ACTIONS(726), + [anon_sym_include] = ACTIONS(726), + [anon_sym_require] = ACTIONS(726), + [anon_sym_contain] = ACTIONS(726), + [anon_sym_tag] = ACTIONS(726), + [anon_sym_debug] = ACTIONS(726), + [anon_sym_info] = ACTIONS(726), + [anon_sym_notice] = ACTIONS(726), + [anon_sym_warning] = ACTIONS(726), + [anon_sym_err] = ACTIONS(726), + [anon_sym_fail] = ACTIONS(726), + [sym_type] = ACTIONS(724), + [sym_name] = ACTIONS(726), + [sym_number] = ACTIONS(724), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_qmark] = ACTIONS(724), }, - [314] = { - [sym_comment] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_AT] = ACTIONS(502), - [anon_sym_AT_AT] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_in] = ACTIONS(502), - [anon_sym_EQ_TILDE] = ACTIONS(500), - [anon_sym_BANG_TILDE] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_and] = ACTIONS(502), - [anon_sym_or] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_if] = ACTIONS(502), - [anon_sym_unless] = ACTIONS(502), - [anon_sym_case] = ACTIONS(502), - [anon_sym_LT_PIPE] = ACTIONS(500), - [anon_sym_LT_LT_PIPE] = ACTIONS(500), - [anon_sym_define] = ACTIONS(502), - [anon_sym_plan] = ACTIONS(502), - [anon_sym_apply] = ACTIONS(502), - [anon_sym_class] = ACTIONS(502), - [anon_sym_node] = ACTIONS(502), - [anon_sym_function] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_DOLLAR] = ACTIONS(500), - [anon_sym_private] = ACTIONS(502), - [anon_sym_attr] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE] = ACTIONS(500), - [anon_sym_AT_LPAREN] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_undef] = ACTIONS(502), - [anon_sym_include] = ACTIONS(502), - [anon_sym_require] = ACTIONS(502), - [anon_sym_contain] = ACTIONS(502), - [anon_sym_tag] = ACTIONS(502), - [anon_sym_debug] = ACTIONS(502), - [anon_sym_info] = ACTIONS(502), - [anon_sym_notice] = ACTIONS(502), - [anon_sym_warning] = ACTIONS(502), - [anon_sym_err] = ACTIONS(502), - [anon_sym_fail] = ACTIONS(502), - [sym_type] = ACTIONS(500), - [sym_name] = ACTIONS(502), - [sym_number] = ACTIONS(500), - [sym_true] = ACTIONS(502), - [sym_false] = ACTIONS(502), - [sym_qmark] = ACTIONS(500), + [334] = { + [sym_comment] = STATE(334), + [ts_builtin_sym_end] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_AT_AT] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_in] = ACTIONS(694), + [anon_sym_EQ_TILDE] = ACTIONS(692), + [anon_sym_BANG_TILDE] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_and] = ACTIONS(694), + [anon_sym_or] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(692), + [anon_sym_if] = ACTIONS(694), + [anon_sym_unless] = ACTIONS(694), + [anon_sym_case] = ACTIONS(694), + [anon_sym_LT_PIPE] = ACTIONS(692), + [anon_sym_LT_LT_PIPE] = ACTIONS(692), + [anon_sym_define] = ACTIONS(694), + [anon_sym_plan] = ACTIONS(694), + [anon_sym_apply] = ACTIONS(694), + [anon_sym_class] = ACTIONS(694), + [anon_sym_node] = ACTIONS(694), + [anon_sym_function] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_private] = ACTIONS(694), + [anon_sym_attr] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_AT_LPAREN] = ACTIONS(692), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_undef] = ACTIONS(694), + [anon_sym_include] = ACTIONS(694), + [anon_sym_require] = ACTIONS(694), + [anon_sym_contain] = ACTIONS(694), + [anon_sym_tag] = ACTIONS(694), + [anon_sym_debug] = ACTIONS(694), + [anon_sym_info] = ACTIONS(694), + [anon_sym_notice] = ACTIONS(694), + [anon_sym_warning] = ACTIONS(694), + [anon_sym_err] = ACTIONS(694), + [anon_sym_fail] = ACTIONS(694), + [sym_type] = ACTIONS(692), + [sym_name] = ACTIONS(694), + [sym_number] = ACTIONS(692), + [sym_true] = ACTIONS(694), + [sym_false] = ACTIONS(694), + [sym_qmark] = ACTIONS(692), }, - [315] = { - [sym_comment] = STATE(315), + [335] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(335), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [336] = { + [sym_comment] = STATE(336), + [ts_builtin_sym_end] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_COMMA] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(666), + [anon_sym_AT_AT] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_in] = ACTIONS(666), + [anon_sym_EQ_TILDE] = ACTIONS(664), + [anon_sym_BANG_TILDE] = ACTIONS(664), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_SLASH] = ACTIONS(664), + [anon_sym_PERCENT] = ACTIONS(664), + [anon_sym_LT_LT] = ACTIONS(666), + [anon_sym_GT_GT] = ACTIONS(664), + [anon_sym_BANG_EQ] = ACTIONS(664), + [anon_sym_EQ_EQ] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_LT_EQ] = ACTIONS(664), + [anon_sym_and] = ACTIONS(666), + [anon_sym_or] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(664), + [anon_sym_if] = ACTIONS(666), + [anon_sym_unless] = ACTIONS(666), + [anon_sym_case] = ACTIONS(666), + [anon_sym_LT_PIPE] = ACTIONS(664), + [anon_sym_LT_LT_PIPE] = ACTIONS(664), + [anon_sym_define] = ACTIONS(666), + [anon_sym_plan] = ACTIONS(666), + [anon_sym_apply] = ACTIONS(666), + [anon_sym_class] = ACTIONS(666), + [anon_sym_node] = ACTIONS(666), + [anon_sym_function] = ACTIONS(666), + [anon_sym_type] = ACTIONS(666), + [anon_sym_DOLLAR] = ACTIONS(664), + [anon_sym_private] = ACTIONS(666), + [anon_sym_attr] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(664), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_AT_LPAREN] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(666), + [anon_sym_default] = ACTIONS(666), + [anon_sym_undef] = ACTIONS(666), + [anon_sym_include] = ACTIONS(666), + [anon_sym_require] = ACTIONS(666), + [anon_sym_contain] = ACTIONS(666), + [anon_sym_tag] = ACTIONS(666), + [anon_sym_debug] = ACTIONS(666), + [anon_sym_info] = ACTIONS(666), + [anon_sym_notice] = ACTIONS(666), + [anon_sym_warning] = ACTIONS(666), + [anon_sym_err] = ACTIONS(666), + [anon_sym_fail] = ACTIONS(666), + [sym_type] = ACTIONS(664), + [sym_name] = ACTIONS(666), + [sym_number] = ACTIONS(664), + [sym_true] = ACTIONS(666), + [sym_false] = ACTIONS(666), + [sym_qmark] = ACTIONS(664), + }, + [337] = { + [sym_comment] = STATE(337), [ts_builtin_sym_end] = ACTIONS(622), [anon_sym_SEMI] = ACTIONS(622), [anon_sym_LBRACE] = ACTIONS(622), @@ -32925,498 +34657,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(624), [sym_qmark] = ACTIONS(622), }, - [316] = { - [sym_comment] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(618), - [anon_sym_AT] = ACTIONS(620), - [anon_sym_AT_AT] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_in] = ACTIONS(620), - [anon_sym_EQ_TILDE] = ACTIONS(618), - [anon_sym_BANG_TILDE] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_BANG_EQ] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(618), - [anon_sym_and] = ACTIONS(620), - [anon_sym_or] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [anon_sym_if] = ACTIONS(620), - [anon_sym_unless] = ACTIONS(620), - [anon_sym_case] = ACTIONS(620), - [anon_sym_LT_PIPE] = ACTIONS(618), - [anon_sym_LT_LT_PIPE] = ACTIONS(618), - [anon_sym_define] = ACTIONS(620), - [anon_sym_plan] = ACTIONS(620), - [anon_sym_apply] = ACTIONS(620), - [anon_sym_class] = ACTIONS(620), - [anon_sym_node] = ACTIONS(620), - [anon_sym_function] = ACTIONS(620), - [anon_sym_type] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(618), - [anon_sym_private] = ACTIONS(620), - [anon_sym_attr] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(618), - [anon_sym_AT_LPAREN] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(620), - [anon_sym_default] = ACTIONS(620), - [anon_sym_undef] = ACTIONS(620), - [anon_sym_include] = ACTIONS(620), - [anon_sym_require] = ACTIONS(620), - [anon_sym_contain] = ACTIONS(620), - [anon_sym_tag] = ACTIONS(620), - [anon_sym_debug] = ACTIONS(620), - [anon_sym_info] = ACTIONS(620), - [anon_sym_notice] = ACTIONS(620), - [anon_sym_warning] = ACTIONS(620), - [anon_sym_err] = ACTIONS(620), - [anon_sym_fail] = ACTIONS(620), - [sym_type] = ACTIONS(618), - [sym_name] = ACTIONS(620), - [sym_number] = ACTIONS(618), - [sym_true] = ACTIONS(620), - [sym_false] = ACTIONS(620), - [sym_qmark] = ACTIONS(618), - }, - [317] = { - [sym_comment] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_AT] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_in] = ACTIONS(592), - [anon_sym_EQ_TILDE] = ACTIONS(588), - [anon_sym_BANG_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_and] = ACTIONS(592), - [anon_sym_or] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_if] = ACTIONS(592), - [anon_sym_unless] = ACTIONS(592), - [anon_sym_case] = ACTIONS(592), - [anon_sym_LT_PIPE] = ACTIONS(588), - [anon_sym_LT_LT_PIPE] = ACTIONS(588), - [anon_sym_define] = ACTIONS(592), - [anon_sym_plan] = ACTIONS(592), - [anon_sym_apply] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_node] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_private] = ACTIONS(592), - [anon_sym_attr] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_AT_LPAREN] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_undef] = ACTIONS(592), - [anon_sym_include] = ACTIONS(592), - [anon_sym_require] = ACTIONS(592), - [anon_sym_contain] = ACTIONS(592), - [anon_sym_tag] = ACTIONS(592), - [anon_sym_debug] = ACTIONS(592), - [anon_sym_info] = ACTIONS(592), - [anon_sym_notice] = ACTIONS(592), - [anon_sym_warning] = ACTIONS(592), - [anon_sym_err] = ACTIONS(592), - [anon_sym_fail] = ACTIONS(592), - [sym_type] = ACTIONS(588), - [sym_name] = ACTIONS(592), - [sym_number] = ACTIONS(588), - [sym_true] = ACTIONS(592), - [sym_false] = ACTIONS(592), - [sym_qmark] = ACTIONS(588), - }, - [318] = { - [sym_resource_body] = STATE(1520), - [sym_resource_title] = STATE(1615), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(318), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [319] = { - [sym_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_AT] = ACTIONS(588), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_in] = ACTIONS(592), - [anon_sym_EQ_TILDE] = ACTIONS(588), - [anon_sym_BANG_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_and] = ACTIONS(592), - [anon_sym_or] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_if] = ACTIONS(592), - [anon_sym_unless] = ACTIONS(592), - [anon_sym_case] = ACTIONS(592), - [anon_sym_LT_PIPE] = ACTIONS(588), - [anon_sym_LT_LT_PIPE] = ACTIONS(588), - [anon_sym_define] = ACTIONS(592), - [anon_sym_plan] = ACTIONS(592), - [anon_sym_apply] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_node] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_private] = ACTIONS(592), - [anon_sym_attr] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_AT_LPAREN] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_undef] = ACTIONS(592), - [anon_sym_include] = ACTIONS(592), - [anon_sym_require] = ACTIONS(592), - [anon_sym_contain] = ACTIONS(592), - [anon_sym_tag] = ACTIONS(592), - [anon_sym_debug] = ACTIONS(592), - [anon_sym_info] = ACTIONS(592), - [anon_sym_notice] = ACTIONS(592), - [anon_sym_warning] = ACTIONS(592), - [anon_sym_err] = ACTIONS(592), - [anon_sym_fail] = ACTIONS(592), - [sym_type] = ACTIONS(588), - [sym_name] = ACTIONS(592), - [sym_number] = ACTIONS(588), - [sym_true] = ACTIONS(592), - [sym_false] = ACTIONS(592), - [sym_qmark] = ACTIONS(588), + [338] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(338), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [320] = { - [sym_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(574), - [anon_sym_AT_AT] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_in] = ACTIONS(574), - [anon_sym_EQ_TILDE] = ACTIONS(572), - [anon_sym_BANG_TILDE] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_and] = ACTIONS(574), - [anon_sym_or] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_if] = ACTIONS(574), - [anon_sym_unless] = ACTIONS(574), - [anon_sym_case] = ACTIONS(574), - [anon_sym_LT_PIPE] = ACTIONS(572), - [anon_sym_LT_LT_PIPE] = ACTIONS(572), - [anon_sym_define] = ACTIONS(574), - [anon_sym_plan] = ACTIONS(574), - [anon_sym_apply] = ACTIONS(574), - [anon_sym_class] = ACTIONS(574), - [anon_sym_node] = ACTIONS(574), - [anon_sym_function] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_private] = ACTIONS(574), - [anon_sym_attr] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_AT_LPAREN] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_undef] = ACTIONS(574), - [anon_sym_include] = ACTIONS(574), - [anon_sym_require] = ACTIONS(574), - [anon_sym_contain] = ACTIONS(574), - [anon_sym_tag] = ACTIONS(574), - [anon_sym_debug] = ACTIONS(574), - [anon_sym_info] = ACTIONS(574), - [anon_sym_notice] = ACTIONS(574), - [anon_sym_warning] = ACTIONS(574), - [anon_sym_err] = ACTIONS(574), - [anon_sym_fail] = ACTIONS(574), - [sym_type] = ACTIONS(572), - [sym_name] = ACTIONS(574), - [sym_number] = ACTIONS(572), - [sym_true] = ACTIONS(574), - [sym_false] = ACTIONS(574), - [sym_qmark] = ACTIONS(572), + [339] = { + [sym_comment] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(678), + [anon_sym_AT_AT] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(676), + [anon_sym_in] = ACTIONS(678), + [anon_sym_EQ_TILDE] = ACTIONS(676), + [anon_sym_BANG_TILDE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_SLASH] = ACTIONS(676), + [anon_sym_PERCENT] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(678), + [anon_sym_GT_GT] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(678), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_and] = ACTIONS(678), + [anon_sym_or] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(676), + [anon_sym_if] = ACTIONS(678), + [anon_sym_unless] = ACTIONS(678), + [anon_sym_case] = ACTIONS(678), + [anon_sym_LT_PIPE] = ACTIONS(676), + [anon_sym_LT_LT_PIPE] = ACTIONS(676), + [anon_sym_define] = ACTIONS(678), + [anon_sym_plan] = ACTIONS(678), + [anon_sym_apply] = ACTIONS(678), + [anon_sym_class] = ACTIONS(678), + [anon_sym_node] = ACTIONS(678), + [anon_sym_function] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_private] = ACTIONS(678), + [anon_sym_attr] = ACTIONS(678), + [anon_sym_SQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_AT_LPAREN] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_undef] = ACTIONS(678), + [anon_sym_include] = ACTIONS(678), + [anon_sym_require] = ACTIONS(678), + [anon_sym_contain] = ACTIONS(678), + [anon_sym_tag] = ACTIONS(678), + [anon_sym_debug] = ACTIONS(678), + [anon_sym_info] = ACTIONS(678), + [anon_sym_notice] = ACTIONS(678), + [anon_sym_warning] = ACTIONS(678), + [anon_sym_err] = ACTIONS(678), + [anon_sym_fail] = ACTIONS(678), + [sym_type] = ACTIONS(676), + [sym_name] = ACTIONS(678), + [sym_number] = ACTIONS(676), + [sym_true] = ACTIONS(678), + [sym_false] = ACTIONS(678), + [sym_qmark] = ACTIONS(676), }, - [321] = { - [sym_comment] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_AT] = ACTIONS(600), - [anon_sym_AT_AT] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_in] = ACTIONS(600), - [anon_sym_EQ_TILDE] = ACTIONS(598), - [anon_sym_BANG_TILDE] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_and] = ACTIONS(600), - [anon_sym_or] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_if] = ACTIONS(600), - [anon_sym_unless] = ACTIONS(600), - [anon_sym_case] = ACTIONS(600), - [anon_sym_LT_PIPE] = ACTIONS(598), - [anon_sym_LT_LT_PIPE] = ACTIONS(598), - [anon_sym_define] = ACTIONS(600), - [anon_sym_plan] = ACTIONS(600), - [anon_sym_apply] = ACTIONS(600), - [anon_sym_class] = ACTIONS(600), - [anon_sym_node] = ACTIONS(600), - [anon_sym_function] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_DOLLAR] = ACTIONS(598), - [anon_sym_private] = ACTIONS(600), - [anon_sym_attr] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_AT_LPAREN] = ACTIONS(598), + [340] = { + [sym_comment] = STATE(340), + [ts_builtin_sym_end] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_AT_AT] = ACTIONS(618), + [anon_sym_BANG] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_in] = ACTIONS(620), + [anon_sym_EQ_TILDE] = ACTIONS(618), + [anon_sym_BANG_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_LT_LT] = ACTIONS(620), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_BANG_EQ] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(618), + [anon_sym_and] = ACTIONS(620), + [anon_sym_or] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_if] = ACTIONS(620), + [anon_sym_unless] = ACTIONS(620), + [anon_sym_case] = ACTIONS(620), + [anon_sym_LT_PIPE] = ACTIONS(618), + [anon_sym_LT_LT_PIPE] = ACTIONS(618), + [anon_sym_define] = ACTIONS(620), + [anon_sym_plan] = ACTIONS(620), + [anon_sym_apply] = ACTIONS(620), + [anon_sym_class] = ACTIONS(620), + [anon_sym_node] = ACTIONS(620), + [anon_sym_function] = ACTIONS(620), + [anon_sym_type] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(618), + [anon_sym_private] = ACTIONS(620), + [anon_sym_attr] = ACTIONS(620), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_AT_LPAREN] = ACTIONS(618), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_undef] = ACTIONS(600), - [anon_sym_include] = ACTIONS(600), - [anon_sym_require] = ACTIONS(600), - [anon_sym_contain] = ACTIONS(600), - [anon_sym_tag] = ACTIONS(600), - [anon_sym_debug] = ACTIONS(600), - [anon_sym_info] = ACTIONS(600), - [anon_sym_notice] = ACTIONS(600), - [anon_sym_warning] = ACTIONS(600), - [anon_sym_err] = ACTIONS(600), - [anon_sym_fail] = ACTIONS(600), - [sym_type] = ACTIONS(598), - [sym_name] = ACTIONS(600), - [sym_number] = ACTIONS(598), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_qmark] = ACTIONS(598), + [anon_sym_LBRACK2] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_undef] = ACTIONS(620), + [anon_sym_include] = ACTIONS(620), + [anon_sym_require] = ACTIONS(620), + [anon_sym_contain] = ACTIONS(620), + [anon_sym_tag] = ACTIONS(620), + [anon_sym_debug] = ACTIONS(620), + [anon_sym_info] = ACTIONS(620), + [anon_sym_notice] = ACTIONS(620), + [anon_sym_warning] = ACTIONS(620), + [anon_sym_err] = ACTIONS(620), + [anon_sym_fail] = ACTIONS(620), + [sym_type] = ACTIONS(618), + [sym_name] = ACTIONS(620), + [sym_number] = ACTIONS(618), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_qmark] = ACTIONS(618), }, - [322] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(369), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(322), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [341] = { + [sym_comment] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_AT_AT] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_in] = ACTIONS(494), + [anon_sym_EQ_TILDE] = ACTIONS(492), + [anon_sym_BANG_TILDE] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_and] = ACTIONS(494), + [anon_sym_or] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_if] = ACTIONS(494), + [anon_sym_unless] = ACTIONS(494), + [anon_sym_case] = ACTIONS(494), + [anon_sym_LT_PIPE] = ACTIONS(492), + [anon_sym_LT_LT_PIPE] = ACTIONS(492), + [anon_sym_define] = ACTIONS(494), + [anon_sym_plan] = ACTIONS(494), + [anon_sym_apply] = ACTIONS(494), + [anon_sym_class] = ACTIONS(494), + [anon_sym_node] = ACTIONS(494), + [anon_sym_function] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_private] = ACTIONS(494), + [anon_sym_attr] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_AT_LPAREN] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_undef] = ACTIONS(494), + [anon_sym_include] = ACTIONS(494), + [anon_sym_require] = ACTIONS(494), + [anon_sym_contain] = ACTIONS(494), + [anon_sym_tag] = ACTIONS(494), + [anon_sym_debug] = ACTIONS(494), + [anon_sym_info] = ACTIONS(494), + [anon_sym_notice] = ACTIONS(494), + [anon_sym_warning] = ACTIONS(494), + [anon_sym_err] = ACTIONS(494), + [anon_sym_fail] = ACTIONS(494), + [sym_type] = ACTIONS(492), + [sym_name] = ACTIONS(494), + [sym_number] = ACTIONS(492), + [sym_true] = ACTIONS(494), + [sym_false] = ACTIONS(494), + [sym_qmark] = ACTIONS(492), }, - [323] = { - [sym_comment] = STATE(323), + [342] = { + [sym_comment] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_AT_AT] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_in] = ACTIONS(532), + [anon_sym_EQ_TILDE] = ACTIONS(530), + [anon_sym_BANG_TILDE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_and] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_unless] = ACTIONS(532), + [anon_sym_case] = ACTIONS(532), + [anon_sym_LT_PIPE] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_define] = ACTIONS(532), + [anon_sym_plan] = ACTIONS(532), + [anon_sym_apply] = ACTIONS(532), + [anon_sym_class] = ACTIONS(532), + [anon_sym_node] = ACTIONS(532), + [anon_sym_function] = ACTIONS(532), + [anon_sym_type] = ACTIONS(532), + [anon_sym_DOLLAR] = ACTIONS(530), + [anon_sym_private] = ACTIONS(532), + [anon_sym_attr] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_AT_LPAREN] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_undef] = ACTIONS(532), + [anon_sym_include] = ACTIONS(532), + [anon_sym_require] = ACTIONS(532), + [anon_sym_contain] = ACTIONS(532), + [anon_sym_tag] = ACTIONS(532), + [anon_sym_debug] = ACTIONS(532), + [anon_sym_info] = ACTIONS(532), + [anon_sym_notice] = ACTIONS(532), + [anon_sym_warning] = ACTIONS(532), + [anon_sym_err] = ACTIONS(532), + [anon_sym_fail] = ACTIONS(532), + [sym_type] = ACTIONS(530), + [sym_name] = ACTIONS(532), + [sym_number] = ACTIONS(530), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_qmark] = ACTIONS(530), + }, + [343] = { + [sym_comment] = STATE(343), [ts_builtin_sym_end] = ACTIONS(303), [anon_sym_SEMI] = ACTIONS(303), [anon_sym_LBRACE] = ACTIONS(303), @@ -33485,1268 +35077,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(305), [sym_qmark] = ACTIONS(303), }, - [324] = { - [sym_comment] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_AT_AT] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_in] = ACTIONS(562), - [anon_sym_EQ_TILDE] = ACTIONS(560), - [anon_sym_BANG_TILDE] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_BANG_EQ] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_LT_EQ] = ACTIONS(560), - [anon_sym_and] = ACTIONS(562), - [anon_sym_or] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [anon_sym_if] = ACTIONS(562), - [anon_sym_unless] = ACTIONS(562), - [anon_sym_case] = ACTIONS(562), - [anon_sym_LT_PIPE] = ACTIONS(560), - [anon_sym_LT_LT_PIPE] = ACTIONS(560), - [anon_sym_define] = ACTIONS(562), - [anon_sym_plan] = ACTIONS(562), - [anon_sym_apply] = ACTIONS(562), - [anon_sym_class] = ACTIONS(562), - [anon_sym_node] = ACTIONS(562), - [anon_sym_function] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_private] = ACTIONS(562), - [anon_sym_attr] = ACTIONS(562), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(560), - [anon_sym_AT_LPAREN] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_undef] = ACTIONS(562), - [anon_sym_include] = ACTIONS(562), - [anon_sym_require] = ACTIONS(562), - [anon_sym_contain] = ACTIONS(562), - [anon_sym_tag] = ACTIONS(562), - [anon_sym_debug] = ACTIONS(562), - [anon_sym_info] = ACTIONS(562), - [anon_sym_notice] = ACTIONS(562), - [anon_sym_warning] = ACTIONS(562), - [anon_sym_err] = ACTIONS(562), - [anon_sym_fail] = ACTIONS(562), - [sym_type] = ACTIONS(560), - [sym_name] = ACTIONS(562), - [sym_number] = ACTIONS(560), - [sym_true] = ACTIONS(562), - [sym_false] = ACTIONS(562), - [sym_qmark] = ACTIONS(560), - }, - [325] = { - [sym_resource_body] = STATE(1534), - [sym_resource_title] = STATE(1615), - [sym__resource_bodies] = STATE(1410), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(325), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [326] = { - [sym_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_AT] = ACTIONS(558), - [anon_sym_AT_AT] = ACTIONS(556), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_in] = ACTIONS(558), - [anon_sym_EQ_TILDE] = ACTIONS(556), - [anon_sym_BANG_TILDE] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_BANG_EQ] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(556), - [anon_sym_and] = ACTIONS(558), - [anon_sym_or] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_unless] = ACTIONS(558), - [anon_sym_case] = ACTIONS(558), - [anon_sym_LT_PIPE] = ACTIONS(556), - [anon_sym_LT_LT_PIPE] = ACTIONS(556), - [anon_sym_define] = ACTIONS(558), - [anon_sym_plan] = ACTIONS(558), - [anon_sym_apply] = ACTIONS(558), - [anon_sym_class] = ACTIONS(558), - [anon_sym_node] = ACTIONS(558), - [anon_sym_function] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_private] = ACTIONS(558), - [anon_sym_attr] = ACTIONS(558), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [anon_sym_AT_LPAREN] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(558), - [anon_sym_default] = ACTIONS(558), - [anon_sym_undef] = ACTIONS(558), - [anon_sym_include] = ACTIONS(558), - [anon_sym_require] = ACTIONS(558), - [anon_sym_contain] = ACTIONS(558), - [anon_sym_tag] = ACTIONS(558), - [anon_sym_debug] = ACTIONS(558), - [anon_sym_info] = ACTIONS(558), - [anon_sym_notice] = ACTIONS(558), - [anon_sym_warning] = ACTIONS(558), - [anon_sym_err] = ACTIONS(558), - [anon_sym_fail] = ACTIONS(558), - [sym_type] = ACTIONS(556), - [sym_name] = ACTIONS(558), - [sym_number] = ACTIONS(556), - [sym_true] = ACTIONS(558), - [sym_false] = ACTIONS(558), - [sym_qmark] = ACTIONS(556), - }, - [327] = { - [sym_comment] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(632), - [anon_sym_AT_AT] = ACTIONS(630), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_in] = ACTIONS(632), - [anon_sym_EQ_TILDE] = ACTIONS(630), - [anon_sym_BANG_TILDE] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(632), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_BANG_EQ] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(630), - [anon_sym_and] = ACTIONS(632), - [anon_sym_or] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [anon_sym_if] = ACTIONS(632), - [anon_sym_unless] = ACTIONS(632), - [anon_sym_case] = ACTIONS(632), - [anon_sym_LT_PIPE] = ACTIONS(630), - [anon_sym_LT_LT_PIPE] = ACTIONS(630), - [anon_sym_define] = ACTIONS(632), - [anon_sym_plan] = ACTIONS(632), - [anon_sym_apply] = ACTIONS(632), - [anon_sym_class] = ACTIONS(632), - [anon_sym_node] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [anon_sym_type] = ACTIONS(632), - [anon_sym_DOLLAR] = ACTIONS(630), - [anon_sym_private] = ACTIONS(632), - [anon_sym_attr] = ACTIONS(632), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE] = ACTIONS(630), - [anon_sym_AT_LPAREN] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_undef] = ACTIONS(632), - [anon_sym_include] = ACTIONS(632), - [anon_sym_require] = ACTIONS(632), - [anon_sym_contain] = ACTIONS(632), - [anon_sym_tag] = ACTIONS(632), - [anon_sym_debug] = ACTIONS(632), - [anon_sym_info] = ACTIONS(632), - [anon_sym_notice] = ACTIONS(632), - [anon_sym_warning] = ACTIONS(632), - [anon_sym_err] = ACTIONS(632), - [anon_sym_fail] = ACTIONS(632), - [sym_type] = ACTIONS(630), - [sym_name] = ACTIONS(632), - [sym_number] = ACTIONS(630), - [sym_true] = ACTIONS(632), - [sym_false] = ACTIONS(632), - [sym_qmark] = ACTIONS(630), - }, - [328] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(290), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(328), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [329] = { - [sym_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_AT] = ACTIONS(550), - [anon_sym_AT_AT] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_in] = ACTIONS(550), - [anon_sym_EQ_TILDE] = ACTIONS(548), - [anon_sym_BANG_TILDE] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_and] = ACTIONS(550), - [anon_sym_or] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_if] = ACTIONS(550), - [anon_sym_unless] = ACTIONS(550), - [anon_sym_case] = ACTIONS(550), - [anon_sym_LT_PIPE] = ACTIONS(548), - [anon_sym_LT_LT_PIPE] = ACTIONS(548), - [anon_sym_define] = ACTIONS(550), - [anon_sym_plan] = ACTIONS(550), - [anon_sym_apply] = ACTIONS(550), - [anon_sym_class] = ACTIONS(550), - [anon_sym_node] = ACTIONS(550), - [anon_sym_function] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_private] = ACTIONS(550), - [anon_sym_attr] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_AT_LPAREN] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_undef] = ACTIONS(550), - [anon_sym_include] = ACTIONS(550), - [anon_sym_require] = ACTIONS(550), - [anon_sym_contain] = ACTIONS(550), - [anon_sym_tag] = ACTIONS(550), - [anon_sym_debug] = ACTIONS(550), - [anon_sym_info] = ACTIONS(550), - [anon_sym_notice] = ACTIONS(550), - [anon_sym_warning] = ACTIONS(550), - [anon_sym_err] = ACTIONS(550), - [anon_sym_fail] = ACTIONS(550), - [sym_type] = ACTIONS(548), - [sym_name] = ACTIONS(550), - [sym_number] = ACTIONS(548), - [sym_true] = ACTIONS(550), - [sym_false] = ACTIONS(550), - [sym_qmark] = ACTIONS(548), + [344] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1555), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(344), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [330] = { - [sym_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(546), - [anon_sym_AT_AT] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_in] = ACTIONS(546), - [anon_sym_EQ_TILDE] = ACTIONS(544), - [anon_sym_BANG_TILDE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_and] = ACTIONS(546), - [anon_sym_or] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_if] = ACTIONS(546), - [anon_sym_unless] = ACTIONS(546), - [anon_sym_case] = ACTIONS(546), - [anon_sym_LT_PIPE] = ACTIONS(544), - [anon_sym_LT_LT_PIPE] = ACTIONS(544), - [anon_sym_define] = ACTIONS(546), - [anon_sym_plan] = ACTIONS(546), - [anon_sym_apply] = ACTIONS(546), - [anon_sym_class] = ACTIONS(546), - [anon_sym_node] = ACTIONS(546), - [anon_sym_function] = ACTIONS(546), - [anon_sym_type] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_private] = ACTIONS(546), - [anon_sym_attr] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_AT_LPAREN] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_undef] = ACTIONS(546), - [anon_sym_include] = ACTIONS(546), - [anon_sym_require] = ACTIONS(546), - [anon_sym_contain] = ACTIONS(546), - [anon_sym_tag] = ACTIONS(546), - [anon_sym_debug] = ACTIONS(546), - [anon_sym_info] = ACTIONS(546), - [anon_sym_notice] = ACTIONS(546), - [anon_sym_warning] = ACTIONS(546), - [anon_sym_err] = ACTIONS(546), - [anon_sym_fail] = ACTIONS(546), - [sym_type] = ACTIONS(544), - [sym_name] = ACTIONS(546), - [sym_number] = ACTIONS(544), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_qmark] = ACTIONS(544), + [345] = { + [sym_comment] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_AT_AT] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_in] = ACTIONS(520), + [anon_sym_EQ_TILDE] = ACTIONS(518), + [anon_sym_BANG_TILDE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_and] = ACTIONS(520), + [anon_sym_or] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_unless] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_LT_PIPE] = ACTIONS(518), + [anon_sym_LT_LT_PIPE] = ACTIONS(518), + [anon_sym_define] = ACTIONS(520), + [anon_sym_plan] = ACTIONS(520), + [anon_sym_apply] = ACTIONS(520), + [anon_sym_class] = ACTIONS(520), + [anon_sym_node] = ACTIONS(520), + [anon_sym_function] = ACTIONS(520), + [anon_sym_type] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(518), + [anon_sym_private] = ACTIONS(520), + [anon_sym_attr] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(518), + [anon_sym_AT_LPAREN] = ACTIONS(518), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_undef] = ACTIONS(520), + [anon_sym_include] = ACTIONS(520), + [anon_sym_require] = ACTIONS(520), + [anon_sym_contain] = ACTIONS(520), + [anon_sym_tag] = ACTIONS(520), + [anon_sym_debug] = ACTIONS(520), + [anon_sym_info] = ACTIONS(520), + [anon_sym_notice] = ACTIONS(520), + [anon_sym_warning] = ACTIONS(520), + [anon_sym_err] = ACTIONS(520), + [anon_sym_fail] = ACTIONS(520), + [sym_type] = ACTIONS(518), + [sym_name] = ACTIONS(520), + [sym_number] = ACTIONS(518), + [sym_true] = ACTIONS(520), + [sym_false] = ACTIONS(520), + [sym_qmark] = ACTIONS(518), }, - [331] = { - [sym_comment] = STATE(331), - [ts_builtin_sym_end] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_AT_AT] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_in] = ACTIONS(542), - [anon_sym_EQ_TILDE] = ACTIONS(540), - [anon_sym_BANG_TILDE] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_and] = ACTIONS(542), - [anon_sym_or] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_unless] = ACTIONS(542), - [anon_sym_case] = ACTIONS(542), - [anon_sym_LT_PIPE] = ACTIONS(540), - [anon_sym_LT_LT_PIPE] = ACTIONS(540), - [anon_sym_define] = ACTIONS(542), - [anon_sym_plan] = ACTIONS(542), - [anon_sym_apply] = ACTIONS(542), - [anon_sym_class] = ACTIONS(542), - [anon_sym_node] = ACTIONS(542), - [anon_sym_function] = ACTIONS(542), - [anon_sym_type] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(540), - [anon_sym_private] = ACTIONS(542), - [anon_sym_attr] = ACTIONS(542), - [anon_sym_SQUOTE] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(540), - [anon_sym_AT_LPAREN] = ACTIONS(540), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(542), - [anon_sym_default] = ACTIONS(542), - [anon_sym_undef] = ACTIONS(542), - [anon_sym_include] = ACTIONS(542), - [anon_sym_require] = ACTIONS(542), - [anon_sym_contain] = ACTIONS(542), - [anon_sym_tag] = ACTIONS(542), - [anon_sym_debug] = ACTIONS(542), - [anon_sym_info] = ACTIONS(542), - [anon_sym_notice] = ACTIONS(542), - [anon_sym_warning] = ACTIONS(542), - [anon_sym_err] = ACTIONS(542), - [anon_sym_fail] = ACTIONS(542), - [sym_type] = ACTIONS(540), - [sym_name] = ACTIONS(542), - [sym_number] = ACTIONS(540), - [sym_true] = ACTIONS(542), - [sym_false] = ACTIONS(542), - [sym_qmark] = ACTIONS(540), + [346] = { + [sym_comment] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_AT_AT] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_in] = ACTIONS(512), + [anon_sym_EQ_TILDE] = ACTIONS(510), + [anon_sym_BANG_TILDE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(510), + [anon_sym_and] = ACTIONS(512), + [anon_sym_or] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_unless] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_LT_PIPE] = ACTIONS(510), + [anon_sym_LT_LT_PIPE] = ACTIONS(510), + [anon_sym_define] = ACTIONS(512), + [anon_sym_plan] = ACTIONS(512), + [anon_sym_apply] = ACTIONS(512), + [anon_sym_class] = ACTIONS(512), + [anon_sym_node] = ACTIONS(512), + [anon_sym_function] = ACTIONS(512), + [anon_sym_type] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(510), + [anon_sym_private] = ACTIONS(512), + [anon_sym_attr] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(510), + [anon_sym_AT_LPAREN] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(512), + [anon_sym_default] = ACTIONS(512), + [anon_sym_undef] = ACTIONS(512), + [anon_sym_include] = ACTIONS(512), + [anon_sym_require] = ACTIONS(512), + [anon_sym_contain] = ACTIONS(512), + [anon_sym_tag] = ACTIONS(512), + [anon_sym_debug] = ACTIONS(512), + [anon_sym_info] = ACTIONS(512), + [anon_sym_notice] = ACTIONS(512), + [anon_sym_warning] = ACTIONS(512), + [anon_sym_err] = ACTIONS(512), + [anon_sym_fail] = ACTIONS(512), + [sym_type] = ACTIONS(510), + [sym_name] = ACTIONS(512), + [sym_number] = ACTIONS(510), + [sym_true] = ACTIONS(512), + [sym_false] = ACTIONS(512), + [sym_qmark] = ACTIONS(510), }, - [332] = { - [sym_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(536), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_AT_AT] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(536), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_in] = ACTIONS(538), - [anon_sym_EQ_TILDE] = ACTIONS(536), - [anon_sym_BANG_TILDE] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(536), - [anon_sym_SLASH] = ACTIONS(536), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(538), - [anon_sym_GT_GT] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_and] = ACTIONS(538), - [anon_sym_or] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_DOT] = ACTIONS(536), - [anon_sym_if] = ACTIONS(538), - [anon_sym_unless] = ACTIONS(538), - [anon_sym_case] = ACTIONS(538), - [anon_sym_LT_PIPE] = ACTIONS(536), - [anon_sym_LT_LT_PIPE] = ACTIONS(536), - [anon_sym_define] = ACTIONS(538), - [anon_sym_plan] = ACTIONS(538), - [anon_sym_apply] = ACTIONS(538), - [anon_sym_class] = ACTIONS(538), - [anon_sym_node] = ACTIONS(538), - [anon_sym_function] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_DOLLAR] = ACTIONS(536), - [anon_sym_private] = ACTIONS(538), - [anon_sym_attr] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_DQUOTE] = ACTIONS(536), - [anon_sym_AT_LPAREN] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_undef] = ACTIONS(538), - [anon_sym_include] = ACTIONS(538), - [anon_sym_require] = ACTIONS(538), - [anon_sym_contain] = ACTIONS(538), - [anon_sym_tag] = ACTIONS(538), - [anon_sym_debug] = ACTIONS(538), - [anon_sym_info] = ACTIONS(538), - [anon_sym_notice] = ACTIONS(538), - [anon_sym_warning] = ACTIONS(538), - [anon_sym_err] = ACTIONS(538), - [anon_sym_fail] = ACTIONS(538), - [sym_type] = ACTIONS(536), - [sym_name] = ACTIONS(538), - [sym_number] = ACTIONS(536), - [sym_true] = ACTIONS(538), - [sym_false] = ACTIONS(538), - [sym_qmark] = ACTIONS(536), + [347] = { + [sym_comment] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(706), + [anon_sym_AT_AT] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_STAR] = ACTIONS(704), + [anon_sym_in] = ACTIONS(706), + [anon_sym_EQ_TILDE] = ACTIONS(704), + [anon_sym_BANG_TILDE] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_SLASH] = ACTIONS(704), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(706), + [anon_sym_GT_GT] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(704), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_and] = ACTIONS(706), + [anon_sym_or] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_if] = ACTIONS(706), + [anon_sym_unless] = ACTIONS(706), + [anon_sym_case] = ACTIONS(706), + [anon_sym_LT_PIPE] = ACTIONS(704), + [anon_sym_LT_LT_PIPE] = ACTIONS(704), + [anon_sym_define] = ACTIONS(706), + [anon_sym_plan] = ACTIONS(706), + [anon_sym_apply] = ACTIONS(706), + [anon_sym_class] = ACTIONS(706), + [anon_sym_node] = ACTIONS(706), + [anon_sym_function] = ACTIONS(706), + [anon_sym_type] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_private] = ACTIONS(706), + [anon_sym_attr] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_AT_LPAREN] = ACTIONS(704), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(706), + [anon_sym_default] = ACTIONS(706), + [anon_sym_undef] = ACTIONS(706), + [anon_sym_include] = ACTIONS(706), + [anon_sym_require] = ACTIONS(706), + [anon_sym_contain] = ACTIONS(706), + [anon_sym_tag] = ACTIONS(706), + [anon_sym_debug] = ACTIONS(706), + [anon_sym_info] = ACTIONS(706), + [anon_sym_notice] = ACTIONS(706), + [anon_sym_warning] = ACTIONS(706), + [anon_sym_err] = ACTIONS(706), + [anon_sym_fail] = ACTIONS(706), + [sym_type] = ACTIONS(704), + [sym_name] = ACTIONS(706), + [sym_number] = ACTIONS(704), + [sym_true] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [sym_qmark] = ACTIONS(704), }, - [333] = { - [sym_comment] = STATE(333), - [ts_builtin_sym_end] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_AT_AT] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_in] = ACTIONS(534), - [anon_sym_EQ_TILDE] = ACTIONS(532), - [anon_sym_BANG_TILDE] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_and] = ACTIONS(534), - [anon_sym_or] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [anon_sym_if] = ACTIONS(534), - [anon_sym_unless] = ACTIONS(534), - [anon_sym_case] = ACTIONS(534), - [anon_sym_LT_PIPE] = ACTIONS(532), - [anon_sym_LT_LT_PIPE] = ACTIONS(532), - [anon_sym_define] = ACTIONS(534), - [anon_sym_plan] = ACTIONS(534), - [anon_sym_apply] = ACTIONS(534), - [anon_sym_class] = ACTIONS(534), - [anon_sym_node] = ACTIONS(534), - [anon_sym_function] = ACTIONS(534), - [anon_sym_type] = ACTIONS(534), - [anon_sym_DOLLAR] = ACTIONS(532), - [anon_sym_private] = ACTIONS(534), - [anon_sym_attr] = ACTIONS(534), - [anon_sym_SQUOTE] = ACTIONS(532), - [anon_sym_DQUOTE] = ACTIONS(532), - [anon_sym_AT_LPAREN] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_undef] = ACTIONS(534), - [anon_sym_include] = ACTIONS(534), - [anon_sym_require] = ACTIONS(534), - [anon_sym_contain] = ACTIONS(534), - [anon_sym_tag] = ACTIONS(534), - [anon_sym_debug] = ACTIONS(534), - [anon_sym_info] = ACTIONS(534), - [anon_sym_notice] = ACTIONS(534), - [anon_sym_warning] = ACTIONS(534), - [anon_sym_err] = ACTIONS(534), - [anon_sym_fail] = ACTIONS(534), - [sym_type] = ACTIONS(532), - [sym_name] = ACTIONS(534), - [sym_number] = ACTIONS(532), - [sym_true] = ACTIONS(534), - [sym_false] = ACTIONS(534), - [sym_qmark] = ACTIONS(532), + [348] = { + [sym_comment] = STATE(348), + [ts_builtin_sym_end] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(628), + [anon_sym_AT_AT] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_in] = ACTIONS(628), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_BANG_TILDE] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(628), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_and] = ACTIONS(628), + [anon_sym_or] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_if] = ACTIONS(628), + [anon_sym_unless] = ACTIONS(628), + [anon_sym_case] = ACTIONS(628), + [anon_sym_LT_PIPE] = ACTIONS(626), + [anon_sym_LT_LT_PIPE] = ACTIONS(626), + [anon_sym_define] = ACTIONS(628), + [anon_sym_plan] = ACTIONS(628), + [anon_sym_apply] = ACTIONS(628), + [anon_sym_class] = ACTIONS(628), + [anon_sym_node] = ACTIONS(628), + [anon_sym_function] = ACTIONS(628), + [anon_sym_type] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_private] = ACTIONS(628), + [anon_sym_attr] = ACTIONS(628), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_AT_LPAREN] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_undef] = ACTIONS(628), + [anon_sym_include] = ACTIONS(628), + [anon_sym_require] = ACTIONS(628), + [anon_sym_contain] = ACTIONS(628), + [anon_sym_tag] = ACTIONS(628), + [anon_sym_debug] = ACTIONS(628), + [anon_sym_info] = ACTIONS(628), + [anon_sym_notice] = ACTIONS(628), + [anon_sym_warning] = ACTIONS(628), + [anon_sym_err] = ACTIONS(628), + [anon_sym_fail] = ACTIONS(628), + [sym_type] = ACTIONS(626), + [sym_name] = ACTIONS(628), + [sym_number] = ACTIONS(626), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_qmark] = ACTIONS(626), }, - [334] = { - [sym_comment] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_AT] = ACTIONS(518), - [anon_sym_AT_AT] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_in] = ACTIONS(518), - [anon_sym_EQ_TILDE] = ACTIONS(516), - [anon_sym_BANG_TILDE] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(516), - [anon_sym_PERCENT] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_and] = ACTIONS(518), - [anon_sym_or] = ACTIONS(518), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(516), - [anon_sym_if] = ACTIONS(518), - [anon_sym_unless] = ACTIONS(518), - [anon_sym_case] = ACTIONS(518), - [anon_sym_LT_PIPE] = ACTIONS(516), - [anon_sym_LT_LT_PIPE] = ACTIONS(516), - [anon_sym_define] = ACTIONS(518), - [anon_sym_plan] = ACTIONS(518), - [anon_sym_apply] = ACTIONS(518), - [anon_sym_class] = ACTIONS(518), - [anon_sym_node] = ACTIONS(518), - [anon_sym_function] = ACTIONS(518), - [anon_sym_type] = ACTIONS(518), - [anon_sym_DOLLAR] = ACTIONS(516), - [anon_sym_private] = ACTIONS(518), - [anon_sym_attr] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(516), - [anon_sym_DQUOTE] = ACTIONS(516), - [anon_sym_AT_LPAREN] = ACTIONS(516), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(518), - [anon_sym_default] = ACTIONS(518), - [anon_sym_undef] = ACTIONS(518), - [anon_sym_include] = ACTIONS(518), - [anon_sym_require] = ACTIONS(518), - [anon_sym_contain] = ACTIONS(518), - [anon_sym_tag] = ACTIONS(518), - [anon_sym_debug] = ACTIONS(518), - [anon_sym_info] = ACTIONS(518), - [anon_sym_notice] = ACTIONS(518), - [anon_sym_warning] = ACTIONS(518), - [anon_sym_err] = ACTIONS(518), - [anon_sym_fail] = ACTIONS(518), - [sym_type] = ACTIONS(516), - [sym_name] = ACTIONS(518), - [sym_number] = ACTIONS(516), - [sym_true] = ACTIONS(518), - [sym_false] = ACTIONS(518), - [sym_qmark] = ACTIONS(516), + [349] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1414), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(349), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [335] = { - [sym_comment] = STATE(335), - [ts_builtin_sym_end] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(372), - [anon_sym_RBRACE] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(374), - [anon_sym_AT_AT] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(374), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_in] = ACTIONS(374), - [anon_sym_EQ_TILDE] = ACTIONS(372), - [anon_sym_BANG_TILDE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PERCENT] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(374), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(374), - [anon_sym_GT_EQ] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(372), - [anon_sym_and] = ACTIONS(374), - [anon_sym_or] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_if] = ACTIONS(374), - [anon_sym_unless] = ACTIONS(374), - [anon_sym_case] = ACTIONS(374), - [anon_sym_LT_PIPE] = ACTIONS(372), - [anon_sym_LT_LT_PIPE] = ACTIONS(372), - [anon_sym_define] = ACTIONS(374), - [anon_sym_plan] = ACTIONS(374), - [anon_sym_apply] = ACTIONS(374), - [anon_sym_class] = ACTIONS(374), - [anon_sym_node] = ACTIONS(374), - [anon_sym_function] = ACTIONS(374), - [anon_sym_type] = ACTIONS(374), - [anon_sym_DOLLAR] = ACTIONS(372), - [anon_sym_private] = ACTIONS(374), - [anon_sym_attr] = ACTIONS(374), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [anon_sym_AT_LPAREN] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(374), - [anon_sym_default] = ACTIONS(374), - [anon_sym_undef] = ACTIONS(374), - [anon_sym_include] = ACTIONS(374), - [anon_sym_require] = ACTIONS(374), - [anon_sym_contain] = ACTIONS(374), - [anon_sym_tag] = ACTIONS(374), - [anon_sym_debug] = ACTIONS(374), - [anon_sym_info] = ACTIONS(374), - [anon_sym_notice] = ACTIONS(374), - [anon_sym_warning] = ACTIONS(374), - [anon_sym_err] = ACTIONS(374), - [anon_sym_fail] = ACTIONS(374), - [sym_type] = ACTIONS(372), - [sym_name] = ACTIONS(374), - [sym_number] = ACTIONS(372), - [sym_true] = ACTIONS(374), - [sym_false] = ACTIONS(374), - [sym_qmark] = ACTIONS(372), + [350] = { + [sym_comment] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_AT_AT] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_in] = ACTIONS(662), + [anon_sym_EQ_TILDE] = ACTIONS(660), + [anon_sym_BANG_TILDE] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(660), + [anon_sym_LT_LT] = ACTIONS(662), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_BANG_EQ] = ACTIONS(660), + [anon_sym_EQ_EQ] = ACTIONS(660), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_GT_EQ] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_LT_EQ] = ACTIONS(660), + [anon_sym_and] = ACTIONS(662), + [anon_sym_or] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_if] = ACTIONS(662), + [anon_sym_unless] = ACTIONS(662), + [anon_sym_case] = ACTIONS(662), + [anon_sym_LT_PIPE] = ACTIONS(660), + [anon_sym_LT_LT_PIPE] = ACTIONS(660), + [anon_sym_define] = ACTIONS(662), + [anon_sym_plan] = ACTIONS(662), + [anon_sym_apply] = ACTIONS(662), + [anon_sym_class] = ACTIONS(662), + [anon_sym_node] = ACTIONS(662), + [anon_sym_function] = ACTIONS(662), + [anon_sym_type] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(660), + [anon_sym_private] = ACTIONS(662), + [anon_sym_attr] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(660), + [anon_sym_DQUOTE] = ACTIONS(660), + [anon_sym_AT_LPAREN] = ACTIONS(660), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(662), + [anon_sym_default] = ACTIONS(662), + [anon_sym_undef] = ACTIONS(662), + [anon_sym_include] = ACTIONS(662), + [anon_sym_require] = ACTIONS(662), + [anon_sym_contain] = ACTIONS(662), + [anon_sym_tag] = ACTIONS(662), + [anon_sym_debug] = ACTIONS(662), + [anon_sym_info] = ACTIONS(662), + [anon_sym_notice] = ACTIONS(662), + [anon_sym_warning] = ACTIONS(662), + [anon_sym_err] = ACTIONS(662), + [anon_sym_fail] = ACTIONS(662), + [sym_type] = ACTIONS(660), + [sym_name] = ACTIONS(662), + [sym_number] = ACTIONS(660), + [sym_true] = ACTIONS(662), + [sym_false] = ACTIONS(662), + [sym_qmark] = ACTIONS(660), }, - [336] = { - [sym_comment] = STATE(336), - [ts_builtin_sym_end] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_AT] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_EQ_TILDE] = ACTIONS(380), - [anon_sym_BANG_TILDE] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_and] = ACTIONS(382), - [anon_sym_or] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_unless] = ACTIONS(382), - [anon_sym_case] = ACTIONS(382), - [anon_sym_LT_PIPE] = ACTIONS(380), - [anon_sym_LT_LT_PIPE] = ACTIONS(380), - [anon_sym_define] = ACTIONS(382), - [anon_sym_plan] = ACTIONS(382), - [anon_sym_apply] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_node] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_type] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(380), - [anon_sym_private] = ACTIONS(382), - [anon_sym_attr] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_AT_LPAREN] = ACTIONS(380), + [351] = { + [sym_comment] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_AT_AT] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_in] = ACTIONS(592), + [anon_sym_EQ_TILDE] = ACTIONS(590), + [anon_sym_BANG_TILDE] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_and] = ACTIONS(592), + [anon_sym_or] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_if] = ACTIONS(592), + [anon_sym_unless] = ACTIONS(592), + [anon_sym_case] = ACTIONS(592), + [anon_sym_LT_PIPE] = ACTIONS(590), + [anon_sym_LT_LT_PIPE] = ACTIONS(590), + [anon_sym_define] = ACTIONS(592), + [anon_sym_plan] = ACTIONS(592), + [anon_sym_apply] = ACTIONS(592), + [anon_sym_class] = ACTIONS(592), + [anon_sym_node] = ACTIONS(592), + [anon_sym_function] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_DOLLAR] = ACTIONS(590), + [anon_sym_private] = ACTIONS(592), + [anon_sym_attr] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_AT_LPAREN] = ACTIONS(590), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_undef] = ACTIONS(382), - [anon_sym_include] = ACTIONS(382), - [anon_sym_require] = ACTIONS(382), - [anon_sym_contain] = ACTIONS(382), - [anon_sym_tag] = ACTIONS(382), - [anon_sym_debug] = ACTIONS(382), - [anon_sym_info] = ACTIONS(382), - [anon_sym_notice] = ACTIONS(382), - [anon_sym_warning] = ACTIONS(382), - [anon_sym_err] = ACTIONS(382), - [anon_sym_fail] = ACTIONS(382), - [sym_type] = ACTIONS(380), - [sym_name] = ACTIONS(382), - [sym_number] = ACTIONS(380), - [sym_true] = ACTIONS(382), - [sym_false] = ACTIONS(382), - [sym_qmark] = ACTIONS(380), - }, - [337] = { - [sym_comment] = STATE(337), - [ts_builtin_sym_end] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(510), - [anon_sym_AT_AT] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_in] = ACTIONS(510), - [anon_sym_EQ_TILDE] = ACTIONS(508), - [anon_sym_BANG_TILDE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_and] = ACTIONS(510), - [anon_sym_or] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_if] = ACTIONS(510), - [anon_sym_unless] = ACTIONS(510), - [anon_sym_case] = ACTIONS(510), - [anon_sym_LT_PIPE] = ACTIONS(508), - [anon_sym_LT_LT_PIPE] = ACTIONS(508), - [anon_sym_define] = ACTIONS(510), - [anon_sym_plan] = ACTIONS(510), - [anon_sym_apply] = ACTIONS(510), - [anon_sym_class] = ACTIONS(510), - [anon_sym_node] = ACTIONS(510), - [anon_sym_function] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_DOLLAR] = ACTIONS(508), - [anon_sym_private] = ACTIONS(510), - [anon_sym_attr] = ACTIONS(510), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [anon_sym_AT_LPAREN] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_undef] = ACTIONS(510), - [anon_sym_include] = ACTIONS(510), - [anon_sym_require] = ACTIONS(510), - [anon_sym_contain] = ACTIONS(510), - [anon_sym_tag] = ACTIONS(510), - [anon_sym_debug] = ACTIONS(510), - [anon_sym_info] = ACTIONS(510), - [anon_sym_notice] = ACTIONS(510), - [anon_sym_warning] = ACTIONS(510), - [anon_sym_err] = ACTIONS(510), - [anon_sym_fail] = ACTIONS(510), - [sym_type] = ACTIONS(508), - [sym_name] = ACTIONS(510), - [sym_number] = ACTIONS(508), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_qmark] = ACTIONS(508), - }, - [338] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__case_options] = STATE(286), - [sym_case_option] = STATE(836), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(338), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACK2] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_undef] = ACTIONS(592), + [anon_sym_include] = ACTIONS(592), + [anon_sym_require] = ACTIONS(592), + [anon_sym_contain] = ACTIONS(592), + [anon_sym_tag] = ACTIONS(592), + [anon_sym_debug] = ACTIONS(592), + [anon_sym_info] = ACTIONS(592), + [anon_sym_notice] = ACTIONS(592), + [anon_sym_warning] = ACTIONS(592), + [anon_sym_err] = ACTIONS(592), + [anon_sym_fail] = ACTIONS(592), + [sym_type] = ACTIONS(590), + [sym_name] = ACTIONS(592), + [sym_number] = ACTIONS(590), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_qmark] = ACTIONS(590), }, - [339] = { - [sym_comment] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_AT_AT] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_in] = ACTIONS(506), - [anon_sym_EQ_TILDE] = ACTIONS(504), - [anon_sym_BANG_TILDE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_and] = ACTIONS(506), - [anon_sym_or] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_if] = ACTIONS(506), - [anon_sym_unless] = ACTIONS(506), - [anon_sym_case] = ACTIONS(506), - [anon_sym_LT_PIPE] = ACTIONS(504), - [anon_sym_LT_LT_PIPE] = ACTIONS(504), - [anon_sym_define] = ACTIONS(506), - [anon_sym_plan] = ACTIONS(506), - [anon_sym_apply] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_node] = ACTIONS(506), - [anon_sym_function] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(504), - [anon_sym_private] = ACTIONS(506), - [anon_sym_attr] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_DQUOTE] = ACTIONS(504), - [anon_sym_AT_LPAREN] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_undef] = ACTIONS(506), - [anon_sym_include] = ACTIONS(506), - [anon_sym_require] = ACTIONS(506), - [anon_sym_contain] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_debug] = ACTIONS(506), - [anon_sym_info] = ACTIONS(506), - [anon_sym_notice] = ACTIONS(506), - [anon_sym_warning] = ACTIONS(506), - [anon_sym_err] = ACTIONS(506), - [anon_sym_fail] = ACTIONS(506), - [sym_type] = ACTIONS(504), - [sym_name] = ACTIONS(506), - [sym_number] = ACTIONS(504), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_qmark] = ACTIONS(504), + [352] = { + [sym_comment] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(696), + [anon_sym_SEMI] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(698), + [anon_sym_AT_AT] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_in] = ACTIONS(698), + [anon_sym_EQ_TILDE] = ACTIONS(696), + [anon_sym_BANG_TILDE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_PERCENT] = ACTIONS(696), + [anon_sym_LT_LT] = ACTIONS(698), + [anon_sym_GT_GT] = ACTIONS(696), + [anon_sym_BANG_EQ] = ACTIONS(696), + [anon_sym_EQ_EQ] = ACTIONS(696), + [anon_sym_GT] = ACTIONS(698), + [anon_sym_GT_EQ] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_LT_EQ] = ACTIONS(696), + [anon_sym_and] = ACTIONS(698), + [anon_sym_or] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_unless] = ACTIONS(698), + [anon_sym_case] = ACTIONS(698), + [anon_sym_LT_PIPE] = ACTIONS(696), + [anon_sym_LT_LT_PIPE] = ACTIONS(696), + [anon_sym_define] = ACTIONS(698), + [anon_sym_plan] = ACTIONS(698), + [anon_sym_apply] = ACTIONS(698), + [anon_sym_class] = ACTIONS(698), + [anon_sym_node] = ACTIONS(698), + [anon_sym_function] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(696), + [anon_sym_private] = ACTIONS(698), + [anon_sym_attr] = ACTIONS(698), + [anon_sym_SQUOTE] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(696), + [anon_sym_AT_LPAREN] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_undef] = ACTIONS(698), + [anon_sym_include] = ACTIONS(698), + [anon_sym_require] = ACTIONS(698), + [anon_sym_contain] = ACTIONS(698), + [anon_sym_tag] = ACTIONS(698), + [anon_sym_debug] = ACTIONS(698), + [anon_sym_info] = ACTIONS(698), + [anon_sym_notice] = ACTIONS(698), + [anon_sym_warning] = ACTIONS(698), + [anon_sym_err] = ACTIONS(698), + [anon_sym_fail] = ACTIONS(698), + [sym_type] = ACTIONS(696), + [sym_name] = ACTIONS(698), + [sym_number] = ACTIONS(696), + [sym_true] = ACTIONS(698), + [sym_false] = ACTIONS(698), + [sym_qmark] = ACTIONS(696), }, - [340] = { - [sym_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(504), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_AT_AT] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_in] = ACTIONS(506), - [anon_sym_EQ_TILDE] = ACTIONS(504), - [anon_sym_BANG_TILDE] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_and] = ACTIONS(506), - [anon_sym_or] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), - [anon_sym_if] = ACTIONS(506), - [anon_sym_unless] = ACTIONS(506), - [anon_sym_case] = ACTIONS(506), - [anon_sym_LT_PIPE] = ACTIONS(504), - [anon_sym_LT_LT_PIPE] = ACTIONS(504), - [anon_sym_define] = ACTIONS(506), - [anon_sym_plan] = ACTIONS(506), - [anon_sym_apply] = ACTIONS(506), - [anon_sym_class] = ACTIONS(506), - [anon_sym_node] = ACTIONS(506), - [anon_sym_function] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_DOLLAR] = ACTIONS(504), - [anon_sym_private] = ACTIONS(506), - [anon_sym_attr] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(504), - [anon_sym_DQUOTE] = ACTIONS(504), - [anon_sym_AT_LPAREN] = ACTIONS(504), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_undef] = ACTIONS(506), - [anon_sym_include] = ACTIONS(506), - [anon_sym_require] = ACTIONS(506), - [anon_sym_contain] = ACTIONS(506), - [anon_sym_tag] = ACTIONS(506), - [anon_sym_debug] = ACTIONS(506), - [anon_sym_info] = ACTIONS(506), - [anon_sym_notice] = ACTIONS(506), - [anon_sym_warning] = ACTIONS(506), - [anon_sym_err] = ACTIONS(506), - [anon_sym_fail] = ACTIONS(506), - [sym_type] = ACTIONS(504), - [sym_name] = ACTIONS(506), - [sym_number] = ACTIONS(504), - [sym_true] = ACTIONS(506), - [sym_false] = ACTIONS(506), - [sym_qmark] = ACTIONS(504), + [353] = { + [sym_comment] = STATE(353), + [ts_builtin_sym_end] = ACTIONS(582), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_AT_AT] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_in] = ACTIONS(584), + [anon_sym_EQ_TILDE] = ACTIONS(582), + [anon_sym_BANG_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_and] = ACTIONS(584), + [anon_sym_or] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_if] = ACTIONS(584), + [anon_sym_unless] = ACTIONS(584), + [anon_sym_case] = ACTIONS(584), + [anon_sym_LT_PIPE] = ACTIONS(582), + [anon_sym_LT_LT_PIPE] = ACTIONS(582), + [anon_sym_define] = ACTIONS(584), + [anon_sym_plan] = ACTIONS(584), + [anon_sym_apply] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_node] = ACTIONS(584), + [anon_sym_function] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_DOLLAR] = ACTIONS(582), + [anon_sym_private] = ACTIONS(584), + [anon_sym_attr] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_AT_LPAREN] = ACTIONS(582), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_undef] = ACTIONS(584), + [anon_sym_include] = ACTIONS(584), + [anon_sym_require] = ACTIONS(584), + [anon_sym_contain] = ACTIONS(584), + [anon_sym_tag] = ACTIONS(584), + [anon_sym_debug] = ACTIONS(584), + [anon_sym_info] = ACTIONS(584), + [anon_sym_notice] = ACTIONS(584), + [anon_sym_warning] = ACTIONS(584), + [anon_sym_err] = ACTIONS(584), + [anon_sym_fail] = ACTIONS(584), + [sym_type] = ACTIONS(582), + [sym_name] = ACTIONS(584), + [sym_number] = ACTIONS(582), + [sym_true] = ACTIONS(584), + [sym_false] = ACTIONS(584), + [sym_qmark] = ACTIONS(582), }, - [341] = { - [sym_comment] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(606), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_AT_AT] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_in] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(606), - [anon_sym_BANG_TILDE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_and] = ACTIONS(608), - [anon_sym_or] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_if] = ACTIONS(608), - [anon_sym_unless] = ACTIONS(608), - [anon_sym_case] = ACTIONS(608), - [anon_sym_LT_PIPE] = ACTIONS(606), - [anon_sym_LT_LT_PIPE] = ACTIONS(606), - [anon_sym_define] = ACTIONS(608), - [anon_sym_plan] = ACTIONS(608), - [anon_sym_apply] = ACTIONS(608), - [anon_sym_class] = ACTIONS(608), - [anon_sym_node] = ACTIONS(608), - [anon_sym_function] = ACTIONS(608), - [anon_sym_type] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(606), - [anon_sym_private] = ACTIONS(608), - [anon_sym_attr] = ACTIONS(608), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_AT_LPAREN] = ACTIONS(606), + [354] = { + [sym_comment] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(716), + [anon_sym_SEMI] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_COMMA] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_AT_AT] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_in] = ACTIONS(718), + [anon_sym_EQ_TILDE] = ACTIONS(716), + [anon_sym_BANG_TILDE] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_SLASH] = ACTIONS(716), + [anon_sym_PERCENT] = ACTIONS(716), + [anon_sym_LT_LT] = ACTIONS(718), + [anon_sym_GT_GT] = ACTIONS(716), + [anon_sym_BANG_EQ] = ACTIONS(716), + [anon_sym_EQ_EQ] = ACTIONS(716), + [anon_sym_GT] = ACTIONS(718), + [anon_sym_GT_EQ] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_LT_EQ] = ACTIONS(716), + [anon_sym_and] = ACTIONS(718), + [anon_sym_or] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(716), + [anon_sym_if] = ACTIONS(718), + [anon_sym_unless] = ACTIONS(718), + [anon_sym_case] = ACTIONS(718), + [anon_sym_LT_PIPE] = ACTIONS(716), + [anon_sym_LT_LT_PIPE] = ACTIONS(716), + [anon_sym_define] = ACTIONS(718), + [anon_sym_plan] = ACTIONS(718), + [anon_sym_apply] = ACTIONS(718), + [anon_sym_class] = ACTIONS(718), + [anon_sym_node] = ACTIONS(718), + [anon_sym_function] = ACTIONS(718), + [anon_sym_type] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(716), + [anon_sym_private] = ACTIONS(718), + [anon_sym_attr] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_AT_LPAREN] = ACTIONS(716), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_undef] = ACTIONS(608), - [anon_sym_include] = ACTIONS(608), - [anon_sym_require] = ACTIONS(608), - [anon_sym_contain] = ACTIONS(608), - [anon_sym_tag] = ACTIONS(608), - [anon_sym_debug] = ACTIONS(608), - [anon_sym_info] = ACTIONS(608), - [anon_sym_notice] = ACTIONS(608), - [anon_sym_warning] = ACTIONS(608), - [anon_sym_err] = ACTIONS(608), - [anon_sym_fail] = ACTIONS(608), - [sym_type] = ACTIONS(606), - [sym_name] = ACTIONS(608), - [sym_number] = ACTIONS(606), - [sym_true] = ACTIONS(608), - [sym_false] = ACTIONS(608), - [sym_qmark] = ACTIONS(606), + [anon_sym_LBRACK2] = ACTIONS(718), + [anon_sym_default] = ACTIONS(718), + [anon_sym_undef] = ACTIONS(718), + [anon_sym_include] = ACTIONS(718), + [anon_sym_require] = ACTIONS(718), + [anon_sym_contain] = ACTIONS(718), + [anon_sym_tag] = ACTIONS(718), + [anon_sym_debug] = ACTIONS(718), + [anon_sym_info] = ACTIONS(718), + [anon_sym_notice] = ACTIONS(718), + [anon_sym_warning] = ACTIONS(718), + [anon_sym_err] = ACTIONS(718), + [anon_sym_fail] = ACTIONS(718), + [sym_type] = ACTIONS(716), + [sym_name] = ACTIONS(718), + [sym_number] = ACTIONS(716), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_qmark] = ACTIONS(716), }, - [342] = { - [sym_comment] = STATE(342), + [355] = { + [sym_comment] = STATE(355), [ts_builtin_sym_end] = ACTIONS(610), [anon_sym_SEMI] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(610), @@ -34815,1548 +35917,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(612), [sym_qmark] = ACTIONS(610), }, - [343] = { - [sym_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(670), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_AT_AT] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_in] = ACTIONS(672), - [anon_sym_EQ_TILDE] = ACTIONS(670), - [anon_sym_BANG_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_LT_LT] = ACTIONS(672), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_BANG_EQ] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(670), - [anon_sym_and] = ACTIONS(672), - [anon_sym_or] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(670), - [anon_sym_if] = ACTIONS(672), - [anon_sym_unless] = ACTIONS(672), - [anon_sym_case] = ACTIONS(672), - [anon_sym_LT_PIPE] = ACTIONS(670), - [anon_sym_LT_LT_PIPE] = ACTIONS(670), - [anon_sym_define] = ACTIONS(672), - [anon_sym_plan] = ACTIONS(672), - [anon_sym_apply] = ACTIONS(672), - [anon_sym_class] = ACTIONS(672), - [anon_sym_node] = ACTIONS(672), - [anon_sym_function] = ACTIONS(672), - [anon_sym_type] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(670), - [anon_sym_private] = ACTIONS(672), - [anon_sym_attr] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_AT_LPAREN] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(672), - [anon_sym_default] = ACTIONS(672), - [anon_sym_undef] = ACTIONS(672), - [anon_sym_include] = ACTIONS(672), - [anon_sym_require] = ACTIONS(672), - [anon_sym_contain] = ACTIONS(672), - [anon_sym_tag] = ACTIONS(672), - [anon_sym_debug] = ACTIONS(672), - [anon_sym_info] = ACTIONS(672), - [anon_sym_notice] = ACTIONS(672), - [anon_sym_warning] = ACTIONS(672), - [anon_sym_err] = ACTIONS(672), - [anon_sym_fail] = ACTIONS(672), - [sym_type] = ACTIONS(670), - [sym_name] = ACTIONS(672), - [sym_number] = ACTIONS(670), - [sym_true] = ACTIONS(672), - [sym_false] = ACTIONS(672), - [sym_qmark] = ACTIONS(670), - }, - [344] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(344), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [345] = { - [sym_comment] = STATE(345), - [ts_builtin_sym_end] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_AT_AT] = ACTIONS(614), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_in] = ACTIONS(616), - [anon_sym_EQ_TILDE] = ACTIONS(614), - [anon_sym_BANG_TILDE] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_BANG_EQ] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(614), - [anon_sym_and] = ACTIONS(616), - [anon_sym_or] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [anon_sym_if] = ACTIONS(616), - [anon_sym_unless] = ACTIONS(616), - [anon_sym_case] = ACTIONS(616), - [anon_sym_LT_PIPE] = ACTIONS(614), - [anon_sym_LT_LT_PIPE] = ACTIONS(614), - [anon_sym_define] = ACTIONS(616), - [anon_sym_plan] = ACTIONS(616), - [anon_sym_apply] = ACTIONS(616), - [anon_sym_class] = ACTIONS(616), - [anon_sym_node] = ACTIONS(616), - [anon_sym_function] = ACTIONS(616), - [anon_sym_type] = ACTIONS(616), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_private] = ACTIONS(616), - [anon_sym_attr] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(614), - [anon_sym_AT_LPAREN] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_undef] = ACTIONS(616), - [anon_sym_include] = ACTIONS(616), - [anon_sym_require] = ACTIONS(616), - [anon_sym_contain] = ACTIONS(616), - [anon_sym_tag] = ACTIONS(616), - [anon_sym_debug] = ACTIONS(616), - [anon_sym_info] = ACTIONS(616), - [anon_sym_notice] = ACTIONS(616), - [anon_sym_warning] = ACTIONS(616), - [anon_sym_err] = ACTIONS(616), - [anon_sym_fail] = ACTIONS(616), - [sym_type] = ACTIONS(614), - [sym_name] = ACTIONS(616), - [sym_number] = ACTIONS(614), - [sym_true] = ACTIONS(616), - [sym_false] = ACTIONS(616), - [sym_qmark] = ACTIONS(614), - }, - [346] = { - [sym_comment] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_AT] = ACTIONS(636), - [anon_sym_AT_AT] = ACTIONS(634), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_in] = ACTIONS(636), - [anon_sym_EQ_TILDE] = ACTIONS(634), - [anon_sym_BANG_TILDE] = ACTIONS(634), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(636), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_BANG_EQ] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_and] = ACTIONS(636), - [anon_sym_or] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [anon_sym_if] = ACTIONS(636), - [anon_sym_unless] = ACTIONS(636), - [anon_sym_case] = ACTIONS(636), - [anon_sym_LT_PIPE] = ACTIONS(634), - [anon_sym_LT_LT_PIPE] = ACTIONS(634), - [anon_sym_define] = ACTIONS(636), - [anon_sym_plan] = ACTIONS(636), - [anon_sym_apply] = ACTIONS(636), - [anon_sym_class] = ACTIONS(636), - [anon_sym_node] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_DOLLAR] = ACTIONS(634), - [anon_sym_private] = ACTIONS(636), - [anon_sym_attr] = ACTIONS(636), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_AT_LPAREN] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_undef] = ACTIONS(636), - [anon_sym_include] = ACTIONS(636), - [anon_sym_require] = ACTIONS(636), - [anon_sym_contain] = ACTIONS(636), - [anon_sym_tag] = ACTIONS(636), - [anon_sym_debug] = ACTIONS(636), - [anon_sym_info] = ACTIONS(636), - [anon_sym_notice] = ACTIONS(636), - [anon_sym_warning] = ACTIONS(636), - [anon_sym_err] = ACTIONS(636), - [anon_sym_fail] = ACTIONS(636), - [sym_type] = ACTIONS(634), - [sym_name] = ACTIONS(636), - [sym_number] = ACTIONS(634), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_qmark] = ACTIONS(634), - }, - [347] = { - [sym_resource_body] = STATE(1520), - [sym_resource_title] = STATE(1615), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(347), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [348] = { - [sym_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [anon_sym_AT_AT] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_in] = ACTIONS(640), - [anon_sym_EQ_TILDE] = ACTIONS(638), - [anon_sym_BANG_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_BANG_EQ] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(638), - [anon_sym_and] = ACTIONS(640), - [anon_sym_or] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_DOT] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_unless] = ACTIONS(640), - [anon_sym_case] = ACTIONS(640), - [anon_sym_LT_PIPE] = ACTIONS(638), - [anon_sym_LT_LT_PIPE] = ACTIONS(638), - [anon_sym_define] = ACTIONS(640), - [anon_sym_plan] = ACTIONS(640), - [anon_sym_apply] = ACTIONS(640), - [anon_sym_class] = ACTIONS(640), - [anon_sym_node] = ACTIONS(640), - [anon_sym_function] = ACTIONS(640), - [anon_sym_type] = ACTIONS(640), - [anon_sym_DOLLAR] = ACTIONS(638), - [anon_sym_private] = ACTIONS(640), - [anon_sym_attr] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_AT_LPAREN] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_undef] = ACTIONS(640), - [anon_sym_include] = ACTIONS(640), - [anon_sym_require] = ACTIONS(640), - [anon_sym_contain] = ACTIONS(640), - [anon_sym_tag] = ACTIONS(640), - [anon_sym_debug] = ACTIONS(640), - [anon_sym_info] = ACTIONS(640), - [anon_sym_notice] = ACTIONS(640), - [anon_sym_warning] = ACTIONS(640), - [anon_sym_err] = ACTIONS(640), - [anon_sym_fail] = ACTIONS(640), - [sym_type] = ACTIONS(638), - [sym_name] = ACTIONS(640), - [sym_number] = ACTIONS(638), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_qmark] = ACTIONS(638), - }, - [349] = { - [sym_resource_body] = STATE(1520), - [sym_resource_title] = STATE(1615), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [350] = { - [sym_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(654), - [anon_sym_LBRACE] = ACTIONS(654), - [anon_sym_RBRACE] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(656), - [anon_sym_AT_AT] = ACTIONS(654), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_in] = ACTIONS(656), - [anon_sym_EQ_TILDE] = ACTIONS(654), - [anon_sym_BANG_TILDE] = ACTIONS(654), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_BANG_EQ] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(654), - [anon_sym_and] = ACTIONS(656), - [anon_sym_or] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [anon_sym_if] = ACTIONS(656), - [anon_sym_unless] = ACTIONS(656), - [anon_sym_case] = ACTIONS(656), - [anon_sym_LT_PIPE] = ACTIONS(654), - [anon_sym_LT_LT_PIPE] = ACTIONS(654), - [anon_sym_define] = ACTIONS(656), - [anon_sym_plan] = ACTIONS(656), - [anon_sym_apply] = ACTIONS(656), - [anon_sym_class] = ACTIONS(656), - [anon_sym_node] = ACTIONS(656), - [anon_sym_function] = ACTIONS(656), - [anon_sym_type] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(654), - [anon_sym_private] = ACTIONS(656), - [anon_sym_attr] = ACTIONS(656), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_DQUOTE] = ACTIONS(654), - [anon_sym_AT_LPAREN] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(656), - [anon_sym_default] = ACTIONS(656), - [anon_sym_undef] = ACTIONS(656), - [anon_sym_include] = ACTIONS(656), - [anon_sym_require] = ACTIONS(656), - [anon_sym_contain] = ACTIONS(656), - [anon_sym_tag] = ACTIONS(656), - [anon_sym_debug] = ACTIONS(656), - [anon_sym_info] = ACTIONS(656), - [anon_sym_notice] = ACTIONS(656), - [anon_sym_warning] = ACTIONS(656), - [anon_sym_err] = ACTIONS(656), - [anon_sym_fail] = ACTIONS(656), - [sym_type] = ACTIONS(654), - [sym_name] = ACTIONS(656), - [sym_number] = ACTIONS(654), - [sym_true] = ACTIONS(656), - [sym_false] = ACTIONS(656), - [sym_qmark] = ACTIONS(654), - }, - [351] = { - [sym_resource_body] = STATE(1520), - [sym_resource_title] = STATE(1615), - [sym__expression] = STATE(939), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(351), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [352] = { - [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_AT_AT] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [anon_sym_EQ_TILDE] = ACTIONS(642), - [anon_sym_BANG_TILDE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_and] = ACTIONS(644), - [anon_sym_or] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [anon_sym_if] = ACTIONS(644), - [anon_sym_unless] = ACTIONS(644), - [anon_sym_case] = ACTIONS(644), - [anon_sym_LT_PIPE] = ACTIONS(642), - [anon_sym_LT_LT_PIPE] = ACTIONS(642), - [anon_sym_define] = ACTIONS(644), - [anon_sym_plan] = ACTIONS(644), - [anon_sym_apply] = ACTIONS(644), - [anon_sym_class] = ACTIONS(644), - [anon_sym_node] = ACTIONS(644), - [anon_sym_function] = ACTIONS(644), - [anon_sym_type] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_private] = ACTIONS(644), - [anon_sym_attr] = ACTIONS(644), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_AT_LPAREN] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_undef] = ACTIONS(644), - [anon_sym_include] = ACTIONS(644), - [anon_sym_require] = ACTIONS(644), - [anon_sym_contain] = ACTIONS(644), - [anon_sym_tag] = ACTIONS(644), - [anon_sym_debug] = ACTIONS(644), - [anon_sym_info] = ACTIONS(644), - [anon_sym_notice] = ACTIONS(644), - [anon_sym_warning] = ACTIONS(644), - [anon_sym_err] = ACTIONS(644), - [anon_sym_fail] = ACTIONS(644), - [sym_type] = ACTIONS(642), - [sym_name] = ACTIONS(644), - [sym_number] = ACTIONS(642), - [sym_true] = ACTIONS(644), - [sym_false] = ACTIONS(644), - [sym_qmark] = ACTIONS(642), - }, - [353] = { - [sym_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_AT_AT] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_in] = ACTIONS(570), - [anon_sym_EQ_TILDE] = ACTIONS(568), - [anon_sym_BANG_TILDE] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_BANG_EQ] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(568), - [anon_sym_and] = ACTIONS(570), - [anon_sym_or] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_if] = ACTIONS(570), - [anon_sym_unless] = ACTIONS(570), - [anon_sym_case] = ACTIONS(570), - [anon_sym_LT_PIPE] = ACTIONS(568), - [anon_sym_LT_LT_PIPE] = ACTIONS(568), - [anon_sym_define] = ACTIONS(570), - [anon_sym_plan] = ACTIONS(570), - [anon_sym_apply] = ACTIONS(570), - [anon_sym_class] = ACTIONS(570), - [anon_sym_node] = ACTIONS(570), - [anon_sym_function] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(568), - [anon_sym_private] = ACTIONS(570), - [anon_sym_attr] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_AT_LPAREN] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(570), - [anon_sym_default] = ACTIONS(570), - [anon_sym_undef] = ACTIONS(570), - [anon_sym_include] = ACTIONS(570), - [anon_sym_require] = ACTIONS(570), - [anon_sym_contain] = ACTIONS(570), - [anon_sym_tag] = ACTIONS(570), - [anon_sym_debug] = ACTIONS(570), - [anon_sym_info] = ACTIONS(570), - [anon_sym_notice] = ACTIONS(570), - [anon_sym_warning] = ACTIONS(570), - [anon_sym_err] = ACTIONS(570), - [anon_sym_fail] = ACTIONS(570), - [sym_type] = ACTIONS(568), - [sym_name] = ACTIONS(570), - [sym_number] = ACTIONS(568), - [sym_true] = ACTIONS(570), - [sym_false] = ACTIONS(570), - [sym_qmark] = ACTIONS(568), - }, - [354] = { - [sym_comment] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_AT] = ACTIONS(680), - [anon_sym_AT_AT] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_in] = ACTIONS(680), - [anon_sym_EQ_TILDE] = ACTIONS(678), - [anon_sym_BANG_TILDE] = ACTIONS(678), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_LT_LT] = ACTIONS(680), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_BANG_EQ] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(680), - [anon_sym_GT_EQ] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(680), - [anon_sym_LT_EQ] = ACTIONS(678), - [anon_sym_and] = ACTIONS(680), - [anon_sym_or] = ACTIONS(680), - [anon_sym_LBRACK] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [anon_sym_if] = ACTIONS(680), - [anon_sym_unless] = ACTIONS(680), - [anon_sym_case] = ACTIONS(680), - [anon_sym_LT_PIPE] = ACTIONS(678), - [anon_sym_LT_LT_PIPE] = ACTIONS(678), - [anon_sym_define] = ACTIONS(680), - [anon_sym_plan] = ACTIONS(680), - [anon_sym_apply] = ACTIONS(680), - [anon_sym_class] = ACTIONS(680), - [anon_sym_node] = ACTIONS(680), - [anon_sym_function] = ACTIONS(680), - [anon_sym_type] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(678), - [anon_sym_private] = ACTIONS(680), - [anon_sym_attr] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_AT_LPAREN] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(680), - [anon_sym_default] = ACTIONS(680), - [anon_sym_undef] = ACTIONS(680), - [anon_sym_include] = ACTIONS(680), - [anon_sym_require] = ACTIONS(680), - [anon_sym_contain] = ACTIONS(680), - [anon_sym_tag] = ACTIONS(680), - [anon_sym_debug] = ACTIONS(680), - [anon_sym_info] = ACTIONS(680), - [anon_sym_notice] = ACTIONS(680), - [anon_sym_warning] = ACTIONS(680), - [anon_sym_err] = ACTIONS(680), - [anon_sym_fail] = ACTIONS(680), - [sym_type] = ACTIONS(678), - [sym_name] = ACTIONS(680), - [sym_number] = ACTIONS(678), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_qmark] = ACTIONS(678), - }, - [355] = { - [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(658), - [anon_sym_RBRACE] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), - [anon_sym_AT_AT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_in] = ACTIONS(660), - [anon_sym_EQ_TILDE] = ACTIONS(658), - [anon_sym_BANG_TILDE] = ACTIONS(658), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_LT_LT] = ACTIONS(660), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_BANG_EQ] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(658), - [anon_sym_and] = ACTIONS(660), - [anon_sym_or] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [anon_sym_if] = ACTIONS(660), - [anon_sym_unless] = ACTIONS(660), - [anon_sym_case] = ACTIONS(660), - [anon_sym_LT_PIPE] = ACTIONS(658), - [anon_sym_LT_LT_PIPE] = ACTIONS(658), - [anon_sym_define] = ACTIONS(660), - [anon_sym_plan] = ACTIONS(660), - [anon_sym_apply] = ACTIONS(660), - [anon_sym_class] = ACTIONS(660), - [anon_sym_node] = ACTIONS(660), - [anon_sym_function] = ACTIONS(660), - [anon_sym_type] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(658), - [anon_sym_private] = ACTIONS(660), - [anon_sym_attr] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(658), - [anon_sym_AT_LPAREN] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(660), - [anon_sym_default] = ACTIONS(660), - [anon_sym_undef] = ACTIONS(660), - [anon_sym_include] = ACTIONS(660), - [anon_sym_require] = ACTIONS(660), - [anon_sym_contain] = ACTIONS(660), - [anon_sym_tag] = ACTIONS(660), - [anon_sym_debug] = ACTIONS(660), - [anon_sym_info] = ACTIONS(660), - [anon_sym_notice] = ACTIONS(660), - [anon_sym_warning] = ACTIONS(660), - [anon_sym_err] = ACTIONS(660), - [anon_sym_fail] = ACTIONS(660), - [sym_type] = ACTIONS(658), - [sym_name] = ACTIONS(660), - [sym_number] = ACTIONS(658), - [sym_true] = ACTIONS(660), - [sym_false] = ACTIONS(660), - [sym_qmark] = ACTIONS(658), - }, [356] = { [sym_comment] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(664), - [anon_sym_AT_AT] = ACTIONS(662), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_in] = ACTIONS(664), - [anon_sym_EQ_TILDE] = ACTIONS(662), - [anon_sym_BANG_TILDE] = ACTIONS(662), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_LT_LT] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_BANG_EQ] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(662), - [anon_sym_and] = ACTIONS(664), - [anon_sym_or] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [anon_sym_if] = ACTIONS(664), - [anon_sym_unless] = ACTIONS(664), - [anon_sym_case] = ACTIONS(664), - [anon_sym_LT_PIPE] = ACTIONS(662), - [anon_sym_LT_LT_PIPE] = ACTIONS(662), - [anon_sym_define] = ACTIONS(664), - [anon_sym_plan] = ACTIONS(664), - [anon_sym_apply] = ACTIONS(664), - [anon_sym_class] = ACTIONS(664), - [anon_sym_node] = ACTIONS(664), - [anon_sym_function] = ACTIONS(664), - [anon_sym_type] = ACTIONS(664), - [anon_sym_DOLLAR] = ACTIONS(662), - [anon_sym_private] = ACTIONS(664), - [anon_sym_attr] = ACTIONS(664), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(662), - [anon_sym_AT_LPAREN] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(664), - [anon_sym_default] = ACTIONS(664), - [anon_sym_undef] = ACTIONS(664), - [anon_sym_include] = ACTIONS(664), - [anon_sym_require] = ACTIONS(664), - [anon_sym_contain] = ACTIONS(664), - [anon_sym_tag] = ACTIONS(664), - [anon_sym_debug] = ACTIONS(664), - [anon_sym_info] = ACTIONS(664), - [anon_sym_notice] = ACTIONS(664), - [anon_sym_warning] = ACTIONS(664), - [anon_sym_err] = ACTIONS(664), - [anon_sym_fail] = ACTIONS(664), - [sym_type] = ACTIONS(662), - [sym_name] = ACTIONS(664), - [sym_number] = ACTIONS(662), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_qmark] = ACTIONS(662), + [ts_builtin_sym_end] = ACTIONS(388), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(390), + [anon_sym_AT_AT] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_in] = ACTIONS(390), + [anon_sym_EQ_TILDE] = ACTIONS(388), + [anon_sym_BANG_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(388), + [anon_sym_SLASH] = ACTIONS(388), + [anon_sym_PERCENT] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_and] = ACTIONS(390), + [anon_sym_or] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(388), + [anon_sym_if] = ACTIONS(390), + [anon_sym_unless] = ACTIONS(390), + [anon_sym_case] = ACTIONS(390), + [anon_sym_LT_PIPE] = ACTIONS(388), + [anon_sym_LT_LT_PIPE] = ACTIONS(388), + [anon_sym_define] = ACTIONS(390), + [anon_sym_plan] = ACTIONS(390), + [anon_sym_apply] = ACTIONS(390), + [anon_sym_class] = ACTIONS(390), + [anon_sym_node] = ACTIONS(390), + [anon_sym_function] = ACTIONS(390), + [anon_sym_type] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(388), + [anon_sym_private] = ACTIONS(390), + [anon_sym_attr] = ACTIONS(390), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [anon_sym_AT_LPAREN] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(390), + [anon_sym_default] = ACTIONS(390), + [anon_sym_undef] = ACTIONS(390), + [anon_sym_include] = ACTIONS(390), + [anon_sym_require] = ACTIONS(390), + [anon_sym_contain] = ACTIONS(390), + [anon_sym_tag] = ACTIONS(390), + [anon_sym_debug] = ACTIONS(390), + [anon_sym_info] = ACTIONS(390), + [anon_sym_notice] = ACTIONS(390), + [anon_sym_warning] = ACTIONS(390), + [anon_sym_err] = ACTIONS(390), + [anon_sym_fail] = ACTIONS(390), + [sym_type] = ACTIONS(388), + [sym_name] = ACTIONS(390), + [sym_number] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_qmark] = ACTIONS(388), }, [357] = { [sym_comment] = STATE(357), - [ts_builtin_sym_end] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_RBRACE] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_AT] = ACTIONS(668), - [anon_sym_AT_AT] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_in] = ACTIONS(668), - [anon_sym_EQ_TILDE] = ACTIONS(666), - [anon_sym_BANG_TILDE] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(668), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_BANG_EQ] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(666), - [anon_sym_and] = ACTIONS(668), - [anon_sym_or] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [anon_sym_if] = ACTIONS(668), - [anon_sym_unless] = ACTIONS(668), - [anon_sym_case] = ACTIONS(668), - [anon_sym_LT_PIPE] = ACTIONS(666), - [anon_sym_LT_LT_PIPE] = ACTIONS(666), - [anon_sym_define] = ACTIONS(668), - [anon_sym_plan] = ACTIONS(668), - [anon_sym_apply] = ACTIONS(668), - [anon_sym_class] = ACTIONS(668), - [anon_sym_node] = ACTIONS(668), - [anon_sym_function] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_DOLLAR] = ACTIONS(666), - [anon_sym_private] = ACTIONS(668), - [anon_sym_attr] = ACTIONS(668), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_AT_LPAREN] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(668), - [anon_sym_default] = ACTIONS(668), - [anon_sym_undef] = ACTIONS(668), - [anon_sym_include] = ACTIONS(668), - [anon_sym_require] = ACTIONS(668), - [anon_sym_contain] = ACTIONS(668), - [anon_sym_tag] = ACTIONS(668), - [anon_sym_debug] = ACTIONS(668), - [anon_sym_info] = ACTIONS(668), - [anon_sym_notice] = ACTIONS(668), - [anon_sym_warning] = ACTIONS(668), - [anon_sym_err] = ACTIONS(668), - [anon_sym_fail] = ACTIONS(668), - [sym_type] = ACTIONS(666), - [sym_name] = ACTIONS(668), - [sym_number] = ACTIONS(666), - [sym_true] = ACTIONS(668), - [sym_false] = ACTIONS(668), - [sym_qmark] = ACTIONS(666), + [ts_builtin_sym_end] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_AT_AT] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_in] = ACTIONS(504), + [anon_sym_EQ_TILDE] = ACTIONS(502), + [anon_sym_BANG_TILDE] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(502), + [anon_sym_and] = ACTIONS(504), + [anon_sym_or] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_unless] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_LT_PIPE] = ACTIONS(502), + [anon_sym_LT_LT_PIPE] = ACTIONS(502), + [anon_sym_define] = ACTIONS(504), + [anon_sym_plan] = ACTIONS(504), + [anon_sym_apply] = ACTIONS(504), + [anon_sym_class] = ACTIONS(504), + [anon_sym_node] = ACTIONS(504), + [anon_sym_function] = ACTIONS(504), + [anon_sym_type] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [anon_sym_private] = ACTIONS(504), + [anon_sym_attr] = ACTIONS(504), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [anon_sym_AT_LPAREN] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(504), + [anon_sym_default] = ACTIONS(504), + [anon_sym_undef] = ACTIONS(504), + [anon_sym_include] = ACTIONS(504), + [anon_sym_require] = ACTIONS(504), + [anon_sym_contain] = ACTIONS(504), + [anon_sym_tag] = ACTIONS(504), + [anon_sym_debug] = ACTIONS(504), + [anon_sym_info] = ACTIONS(504), + [anon_sym_notice] = ACTIONS(504), + [anon_sym_warning] = ACTIONS(504), + [anon_sym_err] = ACTIONS(504), + [anon_sym_fail] = ACTIONS(504), + [sym_type] = ACTIONS(502), + [sym_name] = ACTIONS(504), + [sym_number] = ACTIONS(502), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_qmark] = ACTIONS(502), }, [358] = { [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(746), - [anon_sym_AT_AT] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_in] = ACTIONS(746), - [anon_sym_EQ_TILDE] = ACTIONS(744), - [anon_sym_BANG_TILDE] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_LT_LT] = ACTIONS(746), - [anon_sym_GT_GT] = ACTIONS(744), - [anon_sym_BANG_EQ] = ACTIONS(744), - [anon_sym_EQ_EQ] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_GT_EQ] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_LT_EQ] = ACTIONS(744), - [anon_sym_and] = ACTIONS(746), - [anon_sym_or] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_if] = ACTIONS(746), - [anon_sym_unless] = ACTIONS(746), - [anon_sym_case] = ACTIONS(746), - [anon_sym_LT_PIPE] = ACTIONS(744), - [anon_sym_LT_LT_PIPE] = ACTIONS(744), - [anon_sym_define] = ACTIONS(746), - [anon_sym_plan] = ACTIONS(746), - [anon_sym_apply] = ACTIONS(746), - [anon_sym_class] = ACTIONS(746), - [anon_sym_node] = ACTIONS(746), - [anon_sym_function] = ACTIONS(746), - [anon_sym_type] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_private] = ACTIONS(746), - [anon_sym_attr] = ACTIONS(746), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_AT_LPAREN] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(746), - [anon_sym_default] = ACTIONS(746), - [anon_sym_undef] = ACTIONS(746), - [anon_sym_include] = ACTIONS(746), - [anon_sym_require] = ACTIONS(746), - [anon_sym_contain] = ACTIONS(746), - [anon_sym_tag] = ACTIONS(746), - [anon_sym_debug] = ACTIONS(746), - [anon_sym_info] = ACTIONS(746), - [anon_sym_notice] = ACTIONS(746), - [anon_sym_warning] = ACTIONS(746), - [anon_sym_err] = ACTIONS(746), - [anon_sym_fail] = ACTIONS(746), - [sym_type] = ACTIONS(744), - [sym_name] = ACTIONS(746), - [sym_number] = ACTIONS(744), - [sym_true] = ACTIONS(746), - [sym_false] = ACTIONS(746), - [sym_qmark] = ACTIONS(744), + [ts_builtin_sym_end] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_AT_AT] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_in] = ACTIONS(760), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(760), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_and] = ACTIONS(760), + [anon_sym_or] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_if] = ACTIONS(760), + [anon_sym_unless] = ACTIONS(760), + [anon_sym_case] = ACTIONS(760), + [anon_sym_LT_PIPE] = ACTIONS(758), + [anon_sym_LT_LT_PIPE] = ACTIONS(758), + [anon_sym_define] = ACTIONS(760), + [anon_sym_plan] = ACTIONS(760), + [anon_sym_apply] = ACTIONS(760), + [anon_sym_class] = ACTIONS(760), + [anon_sym_node] = ACTIONS(760), + [anon_sym_function] = ACTIONS(760), + [anon_sym_type] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_private] = ACTIONS(760), + [anon_sym_attr] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [anon_sym_AT_LPAREN] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(760), + [anon_sym_default] = ACTIONS(760), + [anon_sym_undef] = ACTIONS(760), + [anon_sym_include] = ACTIONS(760), + [anon_sym_require] = ACTIONS(760), + [anon_sym_contain] = ACTIONS(760), + [anon_sym_tag] = ACTIONS(760), + [anon_sym_debug] = ACTIONS(760), + [anon_sym_info] = ACTIONS(760), + [anon_sym_notice] = ACTIONS(760), + [anon_sym_warning] = ACTIONS(760), + [anon_sym_err] = ACTIONS(760), + [anon_sym_fail] = ACTIONS(760), + [sym_type] = ACTIONS(758), + [sym_name] = ACTIONS(760), + [sym_number] = ACTIONS(758), + [sym_true] = ACTIONS(760), + [sym_false] = ACTIONS(760), + [sym_qmark] = ACTIONS(758), }, [359] = { [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(682), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_AT] = ACTIONS(684), - [anon_sym_AT_AT] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(684), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_in] = ACTIONS(684), - [anon_sym_EQ_TILDE] = ACTIONS(682), - [anon_sym_BANG_TILDE] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_LT_LT] = ACTIONS(684), - [anon_sym_GT_GT] = ACTIONS(682), - [anon_sym_BANG_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(682), - [anon_sym_GT] = ACTIONS(684), - [anon_sym_GT_EQ] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(684), - [anon_sym_LT_EQ] = ACTIONS(682), - [anon_sym_and] = ACTIONS(684), - [anon_sym_or] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_if] = ACTIONS(684), - [anon_sym_unless] = ACTIONS(684), - [anon_sym_case] = ACTIONS(684), - [anon_sym_LT_PIPE] = ACTIONS(682), - [anon_sym_LT_LT_PIPE] = ACTIONS(682), - [anon_sym_define] = ACTIONS(684), - [anon_sym_plan] = ACTIONS(684), - [anon_sym_apply] = ACTIONS(684), - [anon_sym_class] = ACTIONS(684), - [anon_sym_node] = ACTIONS(684), - [anon_sym_function] = ACTIONS(684), - [anon_sym_type] = ACTIONS(684), - [anon_sym_DOLLAR] = ACTIONS(682), - [anon_sym_private] = ACTIONS(684), - [anon_sym_attr] = ACTIONS(684), - [anon_sym_SQUOTE] = ACTIONS(682), - [anon_sym_DQUOTE] = ACTIONS(682), - [anon_sym_AT_LPAREN] = ACTIONS(682), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(684), - [anon_sym_default] = ACTIONS(684), - [anon_sym_undef] = ACTIONS(684), - [anon_sym_include] = ACTIONS(684), - [anon_sym_require] = ACTIONS(684), - [anon_sym_contain] = ACTIONS(684), - [anon_sym_tag] = ACTIONS(684), - [anon_sym_debug] = ACTIONS(684), - [anon_sym_info] = ACTIONS(684), - [anon_sym_notice] = ACTIONS(684), - [anon_sym_warning] = ACTIONS(684), - [anon_sym_err] = ACTIONS(684), - [anon_sym_fail] = ACTIONS(684), - [sym_type] = ACTIONS(682), - [sym_name] = ACTIONS(684), - [sym_number] = ACTIONS(682), - [sym_true] = ACTIONS(684), - [sym_false] = ACTIONS(684), - [sym_qmark] = ACTIONS(682), - }, - [360] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(360), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [361] = { - [sym_comment] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(690), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_COMMA] = ACTIONS(690), - [anon_sym_LPAREN] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(692), - [anon_sym_AT_AT] = ACTIONS(690), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(690), - [anon_sym_in] = ACTIONS(692), - [anon_sym_EQ_TILDE] = ACTIONS(690), - [anon_sym_BANG_TILDE] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(690), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_PERCENT] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(692), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_BANG_EQ] = ACTIONS(690), - [anon_sym_EQ_EQ] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(692), - [anon_sym_GT_EQ] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(692), - [anon_sym_LT_EQ] = ACTIONS(690), - [anon_sym_and] = ACTIONS(692), - [anon_sym_or] = ACTIONS(692), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(690), - [anon_sym_if] = ACTIONS(692), - [anon_sym_unless] = ACTIONS(692), - [anon_sym_case] = ACTIONS(692), - [anon_sym_LT_PIPE] = ACTIONS(690), - [anon_sym_LT_LT_PIPE] = ACTIONS(690), - [anon_sym_define] = ACTIONS(692), - [anon_sym_plan] = ACTIONS(692), - [anon_sym_apply] = ACTIONS(692), - [anon_sym_class] = ACTIONS(692), - [anon_sym_node] = ACTIONS(692), - [anon_sym_function] = ACTIONS(692), - [anon_sym_type] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_private] = ACTIONS(692), - [anon_sym_attr] = ACTIONS(692), - [anon_sym_SQUOTE] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [anon_sym_AT_LPAREN] = ACTIONS(690), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(692), - [anon_sym_default] = ACTIONS(692), - [anon_sym_undef] = ACTIONS(692), - [anon_sym_include] = ACTIONS(692), - [anon_sym_require] = ACTIONS(692), - [anon_sym_contain] = ACTIONS(692), - [anon_sym_tag] = ACTIONS(692), - [anon_sym_debug] = ACTIONS(692), - [anon_sym_info] = ACTIONS(692), - [anon_sym_notice] = ACTIONS(692), - [anon_sym_warning] = ACTIONS(692), - [anon_sym_err] = ACTIONS(692), - [anon_sym_fail] = ACTIONS(692), - [sym_type] = ACTIONS(690), - [sym_name] = ACTIONS(692), - [sym_number] = ACTIONS(690), - [sym_true] = ACTIONS(692), - [sym_false] = ACTIONS(692), - [sym_qmark] = ACTIONS(690), - }, - [362] = { - [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_AT_AT] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_EQ_TILDE] = ACTIONS(694), - [anon_sym_BANG_TILDE] = ACTIONS(694), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(696), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_DOT] = ACTIONS(694), - [anon_sym_if] = ACTIONS(696), - [anon_sym_unless] = ACTIONS(696), - [anon_sym_case] = ACTIONS(696), - [anon_sym_LT_PIPE] = ACTIONS(694), - [anon_sym_LT_LT_PIPE] = ACTIONS(694), - [anon_sym_define] = ACTIONS(696), - [anon_sym_plan] = ACTIONS(696), - [anon_sym_apply] = ACTIONS(696), - [anon_sym_class] = ACTIONS(696), - [anon_sym_node] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [anon_sym_type] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(694), - [anon_sym_private] = ACTIONS(696), - [anon_sym_attr] = ACTIONS(696), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_AT_LPAREN] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_undef] = ACTIONS(696), - [anon_sym_include] = ACTIONS(696), - [anon_sym_require] = ACTIONS(696), - [anon_sym_contain] = ACTIONS(696), - [anon_sym_tag] = ACTIONS(696), - [anon_sym_debug] = ACTIONS(696), - [anon_sym_info] = ACTIONS(696), - [anon_sym_notice] = ACTIONS(696), - [anon_sym_warning] = ACTIONS(696), - [anon_sym_err] = ACTIONS(696), - [anon_sym_fail] = ACTIONS(696), - [sym_type] = ACTIONS(694), - [sym_name] = ACTIONS(696), - [sym_number] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_qmark] = ACTIONS(694), - }, - [363] = { - [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_LPAREN] = ACTIONS(698), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_AT] = ACTIONS(698), - [anon_sym_BANG] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_in] = ACTIONS(700), - [anon_sym_EQ_TILDE] = ACTIONS(698), - [anon_sym_BANG_TILDE] = ACTIONS(698), - [anon_sym_PLUS] = ACTIONS(698), - [anon_sym_SLASH] = ACTIONS(698), - [anon_sym_PERCENT] = ACTIONS(698), - [anon_sym_LT_LT] = ACTIONS(700), - [anon_sym_GT_GT] = ACTIONS(698), - [anon_sym_BANG_EQ] = ACTIONS(698), - [anon_sym_EQ_EQ] = ACTIONS(698), - [anon_sym_GT] = ACTIONS(700), - [anon_sym_GT_EQ] = ACTIONS(698), - [anon_sym_LT] = ACTIONS(700), - [anon_sym_LT_EQ] = ACTIONS(698), - [anon_sym_and] = ACTIONS(700), - [anon_sym_or] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_DOT] = ACTIONS(698), - [anon_sym_if] = ACTIONS(700), - [anon_sym_unless] = ACTIONS(700), - [anon_sym_case] = ACTIONS(700), - [anon_sym_LT_PIPE] = ACTIONS(698), - [anon_sym_LT_LT_PIPE] = ACTIONS(698), - [anon_sym_define] = ACTIONS(700), - [anon_sym_plan] = ACTIONS(700), - [anon_sym_apply] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_node] = ACTIONS(700), - [anon_sym_function] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_private] = ACTIONS(700), - [anon_sym_attr] = ACTIONS(700), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_AT_LPAREN] = ACTIONS(698), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_undef] = ACTIONS(700), - [anon_sym_include] = ACTIONS(700), - [anon_sym_require] = ACTIONS(700), - [anon_sym_contain] = ACTIONS(700), - [anon_sym_tag] = ACTIONS(700), - [anon_sym_debug] = ACTIONS(700), - [anon_sym_info] = ACTIONS(700), - [anon_sym_notice] = ACTIONS(700), - [anon_sym_warning] = ACTIONS(700), - [anon_sym_err] = ACTIONS(700), - [anon_sym_fail] = ACTIONS(700), - [sym_type] = ACTIONS(698), - [sym_name] = ACTIONS(700), - [sym_number] = ACTIONS(698), - [sym_true] = ACTIONS(700), - [sym_false] = ACTIONS(700), - [sym_qmark] = ACTIONS(698), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_COMMA] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_AT] = ACTIONS(738), - [anon_sym_AT_AT] = ACTIONS(736), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_in] = ACTIONS(738), - [anon_sym_EQ_TILDE] = ACTIONS(736), - [anon_sym_BANG_TILDE] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(736), - [anon_sym_PERCENT] = ACTIONS(736), - [anon_sym_LT_LT] = ACTIONS(738), - [anon_sym_GT_GT] = ACTIONS(736), - [anon_sym_BANG_EQ] = ACTIONS(736), - [anon_sym_EQ_EQ] = ACTIONS(736), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(736), - [anon_sym_and] = ACTIONS(738), - [anon_sym_or] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(736), - [anon_sym_if] = ACTIONS(738), - [anon_sym_unless] = ACTIONS(738), - [anon_sym_case] = ACTIONS(738), - [anon_sym_LT_PIPE] = ACTIONS(736), - [anon_sym_LT_LT_PIPE] = ACTIONS(736), - [anon_sym_define] = ACTIONS(738), - [anon_sym_plan] = ACTIONS(738), - [anon_sym_apply] = ACTIONS(738), - [anon_sym_class] = ACTIONS(738), - [anon_sym_node] = ACTIONS(738), - [anon_sym_function] = ACTIONS(738), - [anon_sym_type] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_private] = ACTIONS(738), - [anon_sym_attr] = ACTIONS(738), - [anon_sym_SQUOTE] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(736), - [anon_sym_AT_LPAREN] = ACTIONS(736), + [ts_builtin_sym_end] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_AT_AT] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_in] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(594), + [anon_sym_BANG_TILDE] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_and] = ACTIONS(596), + [anon_sym_or] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_if] = ACTIONS(596), + [anon_sym_unless] = ACTIONS(596), + [anon_sym_case] = ACTIONS(596), + [anon_sym_LT_PIPE] = ACTIONS(594), + [anon_sym_LT_LT_PIPE] = ACTIONS(594), + [anon_sym_define] = ACTIONS(596), + [anon_sym_plan] = ACTIONS(596), + [anon_sym_apply] = ACTIONS(596), + [anon_sym_class] = ACTIONS(596), + [anon_sym_node] = ACTIONS(596), + [anon_sym_function] = ACTIONS(596), + [anon_sym_type] = ACTIONS(596), + [anon_sym_DOLLAR] = ACTIONS(594), + [anon_sym_private] = ACTIONS(596), + [anon_sym_attr] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(594), + [anon_sym_AT_LPAREN] = ACTIONS(594), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(738), - [anon_sym_default] = ACTIONS(738), - [anon_sym_undef] = ACTIONS(738), - [anon_sym_include] = ACTIONS(738), - [anon_sym_require] = ACTIONS(738), - [anon_sym_contain] = ACTIONS(738), - [anon_sym_tag] = ACTIONS(738), - [anon_sym_debug] = ACTIONS(738), - [anon_sym_info] = ACTIONS(738), - [anon_sym_notice] = ACTIONS(738), - [anon_sym_warning] = ACTIONS(738), - [anon_sym_err] = ACTIONS(738), - [anon_sym_fail] = ACTIONS(738), - [sym_type] = ACTIONS(736), - [sym_name] = ACTIONS(738), - [sym_number] = ACTIONS(736), - [sym_true] = ACTIONS(738), - [sym_false] = ACTIONS(738), - [sym_qmark] = ACTIONS(736), + [anon_sym_LBRACK2] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_undef] = ACTIONS(596), + [anon_sym_include] = ACTIONS(596), + [anon_sym_require] = ACTIONS(596), + [anon_sym_contain] = ACTIONS(596), + [anon_sym_tag] = ACTIONS(596), + [anon_sym_debug] = ACTIONS(596), + [anon_sym_info] = ACTIONS(596), + [anon_sym_notice] = ACTIONS(596), + [anon_sym_warning] = ACTIONS(596), + [anon_sym_err] = ACTIONS(596), + [anon_sym_fail] = ACTIONS(596), + [sym_type] = ACTIONS(594), + [sym_name] = ACTIONS(596), + [sym_number] = ACTIONS(594), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_qmark] = ACTIONS(594), }, - [365] = { - [sym_comment] = STATE(365), + [360] = { + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym__selector_option_list] = STATE(1477), + [sym_selector_option] = STATE(1416), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(360), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [361] = { + [sym_comment] = STATE(361), + [ts_builtin_sym_end] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_AT_AT] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_in] = ACTIONS(536), + [anon_sym_EQ_TILDE] = ACTIONS(534), + [anon_sym_BANG_TILDE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_and] = ACTIONS(536), + [anon_sym_or] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_unless] = ACTIONS(536), + [anon_sym_case] = ACTIONS(536), + [anon_sym_LT_PIPE] = ACTIONS(534), + [anon_sym_LT_LT_PIPE] = ACTIONS(534), + [anon_sym_define] = ACTIONS(536), + [anon_sym_plan] = ACTIONS(536), + [anon_sym_apply] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_node] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [anon_sym_type] = ACTIONS(536), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_private] = ACTIONS(536), + [anon_sym_attr] = ACTIONS(536), + [anon_sym_SQUOTE] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_AT_LPAREN] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_undef] = ACTIONS(536), + [anon_sym_include] = ACTIONS(536), + [anon_sym_require] = ACTIONS(536), + [anon_sym_contain] = ACTIONS(536), + [anon_sym_tag] = ACTIONS(536), + [anon_sym_debug] = ACTIONS(536), + [anon_sym_info] = ACTIONS(536), + [anon_sym_notice] = ACTIONS(536), + [anon_sym_warning] = ACTIONS(536), + [anon_sym_err] = ACTIONS(536), + [anon_sym_fail] = ACTIONS(536), + [sym_type] = ACTIONS(534), + [sym_name] = ACTIONS(536), + [sym_number] = ACTIONS(534), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_qmark] = ACTIONS(534), + }, + [362] = { + [sym_comment] = STATE(362), [ts_builtin_sym_end] = ACTIONS(728), [anon_sym_SEMI] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(728), @@ -36425,288 +36407,988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(730), [sym_qmark] = ACTIONS(728), }, + [363] = { + [sym_comment] = STATE(363), + [ts_builtin_sym_end] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_AT_AT] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_in] = ACTIONS(508), + [anon_sym_EQ_TILDE] = ACTIONS(506), + [anon_sym_BANG_TILDE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_and] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_unless] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_LT_PIPE] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_define] = ACTIONS(508), + [anon_sym_plan] = ACTIONS(508), + [anon_sym_apply] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_node] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_type] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_private] = ACTIONS(508), + [anon_sym_attr] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_AT_LPAREN] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_undef] = ACTIONS(508), + [anon_sym_include] = ACTIONS(508), + [anon_sym_require] = ACTIONS(508), + [anon_sym_contain] = ACTIONS(508), + [anon_sym_tag] = ACTIONS(508), + [anon_sym_debug] = ACTIONS(508), + [anon_sym_info] = ACTIONS(508), + [anon_sym_notice] = ACTIONS(508), + [anon_sym_warning] = ACTIONS(508), + [anon_sym_err] = ACTIONS(508), + [anon_sym_fail] = ACTIONS(508), + [sym_type] = ACTIONS(506), + [sym_name] = ACTIONS(508), + [sym_number] = ACTIONS(506), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_qmark] = ACTIONS(506), + }, + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(444), + [anon_sym_AT_AT] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_in] = ACTIONS(444), + [anon_sym_EQ_TILDE] = ACTIONS(442), + [anon_sym_BANG_TILDE] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_and] = ACTIONS(444), + [anon_sym_or] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [anon_sym_if] = ACTIONS(444), + [anon_sym_unless] = ACTIONS(444), + [anon_sym_case] = ACTIONS(444), + [anon_sym_LT_PIPE] = ACTIONS(442), + [anon_sym_LT_LT_PIPE] = ACTIONS(442), + [anon_sym_define] = ACTIONS(444), + [anon_sym_plan] = ACTIONS(444), + [anon_sym_apply] = ACTIONS(444), + [anon_sym_class] = ACTIONS(444), + [anon_sym_node] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_DOLLAR] = ACTIONS(442), + [anon_sym_private] = ACTIONS(444), + [anon_sym_attr] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_AT_LPAREN] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_undef] = ACTIONS(444), + [anon_sym_include] = ACTIONS(444), + [anon_sym_require] = ACTIONS(444), + [anon_sym_contain] = ACTIONS(444), + [anon_sym_tag] = ACTIONS(444), + [anon_sym_debug] = ACTIONS(444), + [anon_sym_info] = ACTIONS(444), + [anon_sym_notice] = ACTIONS(444), + [anon_sym_warning] = ACTIONS(444), + [anon_sym_err] = ACTIONS(444), + [anon_sym_fail] = ACTIONS(444), + [sym_type] = ACTIONS(442), + [sym_name] = ACTIONS(444), + [sym_number] = ACTIONS(442), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_qmark] = ACTIONS(442), + }, + [365] = { + [sym_comment] = STATE(365), + [ts_builtin_sym_end] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_AT] = ACTIONS(382), + [anon_sym_AT_AT] = ACTIONS(380), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(380), + [anon_sym_STAR] = ACTIONS(380), + [anon_sym_in] = ACTIONS(382), + [anon_sym_EQ_TILDE] = ACTIONS(380), + [anon_sym_BANG_TILDE] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(380), + [anon_sym_SLASH] = ACTIONS(380), + [anon_sym_PERCENT] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_and] = ACTIONS(382), + [anon_sym_or] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(380), + [anon_sym_if] = ACTIONS(382), + [anon_sym_unless] = ACTIONS(382), + [anon_sym_case] = ACTIONS(382), + [anon_sym_LT_PIPE] = ACTIONS(380), + [anon_sym_LT_LT_PIPE] = ACTIONS(380), + [anon_sym_define] = ACTIONS(382), + [anon_sym_plan] = ACTIONS(382), + [anon_sym_apply] = ACTIONS(382), + [anon_sym_class] = ACTIONS(382), + [anon_sym_node] = ACTIONS(382), + [anon_sym_function] = ACTIONS(382), + [anon_sym_type] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(380), + [anon_sym_private] = ACTIONS(382), + [anon_sym_attr] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_AT_LPAREN] = ACTIONS(380), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(382), + [anon_sym_default] = ACTIONS(382), + [anon_sym_undef] = ACTIONS(382), + [anon_sym_include] = ACTIONS(382), + [anon_sym_require] = ACTIONS(382), + [anon_sym_contain] = ACTIONS(382), + [anon_sym_tag] = ACTIONS(382), + [anon_sym_debug] = ACTIONS(382), + [anon_sym_info] = ACTIONS(382), + [anon_sym_notice] = ACTIONS(382), + [anon_sym_warning] = ACTIONS(382), + [anon_sym_err] = ACTIONS(382), + [anon_sym_fail] = ACTIONS(382), + [sym_type] = ACTIONS(380), + [sym_name] = ACTIONS(382), + [sym_number] = ACTIONS(380), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_qmark] = ACTIONS(380), + }, [366] = { [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(726), - [anon_sym_AT_AT] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_in] = ACTIONS(726), - [anon_sym_EQ_TILDE] = ACTIONS(724), - [anon_sym_BANG_TILDE] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_PERCENT] = ACTIONS(724), - [anon_sym_LT_LT] = ACTIONS(726), - [anon_sym_GT_GT] = ACTIONS(724), - [anon_sym_BANG_EQ] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(726), - [anon_sym_GT_EQ] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(726), - [anon_sym_LT_EQ] = ACTIONS(724), - [anon_sym_and] = ACTIONS(726), - [anon_sym_or] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(724), - [anon_sym_if] = ACTIONS(726), - [anon_sym_unless] = ACTIONS(726), - [anon_sym_case] = ACTIONS(726), - [anon_sym_LT_PIPE] = ACTIONS(724), - [anon_sym_LT_LT_PIPE] = ACTIONS(724), - [anon_sym_define] = ACTIONS(726), - [anon_sym_plan] = ACTIONS(726), - [anon_sym_apply] = ACTIONS(726), - [anon_sym_class] = ACTIONS(726), - [anon_sym_node] = ACTIONS(726), - [anon_sym_function] = ACTIONS(726), - [anon_sym_type] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_private] = ACTIONS(726), - [anon_sym_attr] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_AT_LPAREN] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(726), - [anon_sym_default] = ACTIONS(726), - [anon_sym_undef] = ACTIONS(726), - [anon_sym_include] = ACTIONS(726), - [anon_sym_require] = ACTIONS(726), - [anon_sym_contain] = ACTIONS(726), - [anon_sym_tag] = ACTIONS(726), - [anon_sym_debug] = ACTIONS(726), - [anon_sym_info] = ACTIONS(726), - [anon_sym_notice] = ACTIONS(726), - [anon_sym_warning] = ACTIONS(726), - [anon_sym_err] = ACTIONS(726), - [anon_sym_fail] = ACTIONS(726), - [sym_type] = ACTIONS(724), - [sym_name] = ACTIONS(726), - [sym_number] = ACTIONS(724), - [sym_true] = ACTIONS(726), - [sym_false] = ACTIONS(726), - [sym_qmark] = ACTIONS(724), + [ts_builtin_sym_end] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(682), + [anon_sym_AT_AT] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_in] = ACTIONS(682), + [anon_sym_EQ_TILDE] = ACTIONS(680), + [anon_sym_BANG_TILDE] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_SLASH] = ACTIONS(680), + [anon_sym_PERCENT] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_and] = ACTIONS(682), + [anon_sym_or] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_DOT] = ACTIONS(680), + [anon_sym_if] = ACTIONS(682), + [anon_sym_unless] = ACTIONS(682), + [anon_sym_case] = ACTIONS(682), + [anon_sym_LT_PIPE] = ACTIONS(680), + [anon_sym_LT_LT_PIPE] = ACTIONS(680), + [anon_sym_define] = ACTIONS(682), + [anon_sym_plan] = ACTIONS(682), + [anon_sym_apply] = ACTIONS(682), + [anon_sym_class] = ACTIONS(682), + [anon_sym_node] = ACTIONS(682), + [anon_sym_function] = ACTIONS(682), + [anon_sym_type] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(680), + [anon_sym_private] = ACTIONS(682), + [anon_sym_attr] = ACTIONS(682), + [anon_sym_SQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_AT_LPAREN] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(682), + [anon_sym_default] = ACTIONS(682), + [anon_sym_undef] = ACTIONS(682), + [anon_sym_include] = ACTIONS(682), + [anon_sym_require] = ACTIONS(682), + [anon_sym_contain] = ACTIONS(682), + [anon_sym_tag] = ACTIONS(682), + [anon_sym_debug] = ACTIONS(682), + [anon_sym_info] = ACTIONS(682), + [anon_sym_notice] = ACTIONS(682), + [anon_sym_warning] = ACTIONS(682), + [anon_sym_err] = ACTIONS(682), + [anon_sym_fail] = ACTIONS(682), + [sym_type] = ACTIONS(680), + [sym_name] = ACTIONS(682), + [sym_number] = ACTIONS(680), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_qmark] = ACTIONS(680), }, [367] = { [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(702), - [anon_sym_SEMI] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_COMMA] = ACTIONS(702), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_AT_AT] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym_in] = ACTIONS(704), - [anon_sym_EQ_TILDE] = ACTIONS(702), - [anon_sym_BANG_TILDE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(702), - [anon_sym_PERCENT] = ACTIONS(702), - [anon_sym_LT_LT] = ACTIONS(704), - [anon_sym_GT_GT] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_and] = ACTIONS(704), - [anon_sym_or] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_DOT] = ACTIONS(702), - [anon_sym_if] = ACTIONS(704), - [anon_sym_unless] = ACTIONS(704), - [anon_sym_case] = ACTIONS(704), - [anon_sym_LT_PIPE] = ACTIONS(702), - [anon_sym_LT_LT_PIPE] = ACTIONS(702), - [anon_sym_define] = ACTIONS(704), - [anon_sym_plan] = ACTIONS(704), - [anon_sym_apply] = ACTIONS(704), - [anon_sym_class] = ACTIONS(704), - [anon_sym_node] = ACTIONS(704), - [anon_sym_function] = ACTIONS(704), - [anon_sym_type] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(702), - [anon_sym_private] = ACTIONS(704), - [anon_sym_attr] = ACTIONS(704), - [anon_sym_SQUOTE] = ACTIONS(702), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_AT_LPAREN] = ACTIONS(702), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(704), - [anon_sym_default] = ACTIONS(704), - [anon_sym_undef] = ACTIONS(704), - [anon_sym_include] = ACTIONS(704), - [anon_sym_require] = ACTIONS(704), - [anon_sym_contain] = ACTIONS(704), - [anon_sym_tag] = ACTIONS(704), - [anon_sym_debug] = ACTIONS(704), - [anon_sym_info] = ACTIONS(704), - [anon_sym_notice] = ACTIONS(704), - [anon_sym_warning] = ACTIONS(704), - [anon_sym_err] = ACTIONS(704), - [anon_sym_fail] = ACTIONS(704), - [sym_type] = ACTIONS(702), - [sym_name] = ACTIONS(704), - [sym_number] = ACTIONS(702), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_qmark] = ACTIONS(702), + [ts_builtin_sym_end] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_AT_AT] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_in] = ACTIONS(674), + [anon_sym_EQ_TILDE] = ACTIONS(672), + [anon_sym_BANG_TILDE] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(672), + [anon_sym_PERCENT] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(672), + [anon_sym_if] = ACTIONS(674), + [anon_sym_unless] = ACTIONS(674), + [anon_sym_case] = ACTIONS(674), + [anon_sym_LT_PIPE] = ACTIONS(672), + [anon_sym_LT_LT_PIPE] = ACTIONS(672), + [anon_sym_define] = ACTIONS(674), + [anon_sym_plan] = ACTIONS(674), + [anon_sym_apply] = ACTIONS(674), + [anon_sym_class] = ACTIONS(674), + [anon_sym_node] = ACTIONS(674), + [anon_sym_function] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_private] = ACTIONS(674), + [anon_sym_attr] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_AT_LPAREN] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_undef] = ACTIONS(674), + [anon_sym_include] = ACTIONS(674), + [anon_sym_require] = ACTIONS(674), + [anon_sym_contain] = ACTIONS(674), + [anon_sym_tag] = ACTIONS(674), + [anon_sym_debug] = ACTIONS(674), + [anon_sym_info] = ACTIONS(674), + [anon_sym_notice] = ACTIONS(674), + [anon_sym_warning] = ACTIONS(674), + [anon_sym_err] = ACTIONS(674), + [anon_sym_fail] = ACTIONS(674), + [sym_type] = ACTIONS(672), + [sym_name] = ACTIONS(674), + [sym_number] = ACTIONS(672), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_qmark] = ACTIONS(672), }, [368] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(368), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_AT_AT] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_in] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(746), + [anon_sym_BANG_TILDE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(746), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(746), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(746), + [anon_sym_and] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_if] = ACTIONS(748), + [anon_sym_unless] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_LT_PIPE] = ACTIONS(746), + [anon_sym_LT_LT_PIPE] = ACTIONS(746), + [anon_sym_define] = ACTIONS(748), + [anon_sym_plan] = ACTIONS(748), + [anon_sym_apply] = ACTIONS(748), + [anon_sym_class] = ACTIONS(748), + [anon_sym_node] = ACTIONS(748), + [anon_sym_function] = ACTIONS(748), + [anon_sym_type] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(746), + [anon_sym_private] = ACTIONS(748), + [anon_sym_attr] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(746), + [anon_sym_AT_LPAREN] = ACTIONS(746), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_undef] = ACTIONS(748), + [anon_sym_include] = ACTIONS(748), + [anon_sym_require] = ACTIONS(748), + [anon_sym_contain] = ACTIONS(748), + [anon_sym_tag] = ACTIONS(748), + [anon_sym_debug] = ACTIONS(748), + [anon_sym_info] = ACTIONS(748), + [anon_sym_notice] = ACTIONS(748), + [anon_sym_warning] = ACTIONS(748), + [anon_sym_err] = ACTIONS(748), + [anon_sym_fail] = ACTIONS(748), + [sym_type] = ACTIONS(746), + [sym_name] = ACTIONS(748), + [sym_number] = ACTIONS(746), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_qmark] = ACTIONS(746), }, [369] = { - [sym__expression] = STATE(845), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__expressions] = STATE(1569), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_case_option] = STATE(835), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(369), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [370] = { [sym_comment] = STATE(370), + [ts_builtin_sym_end] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_AT_AT] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_STAR] = ACTIONS(672), + [anon_sym_in] = ACTIONS(674), + [anon_sym_EQ_TILDE] = ACTIONS(672), + [anon_sym_BANG_TILDE] = ACTIONS(672), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_SLASH] = ACTIONS(672), + [anon_sym_PERCENT] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(674), + [anon_sym_GT_GT] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(674), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_and] = ACTIONS(674), + [anon_sym_or] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(672), + [anon_sym_if] = ACTIONS(674), + [anon_sym_unless] = ACTIONS(674), + [anon_sym_case] = ACTIONS(674), + [anon_sym_LT_PIPE] = ACTIONS(672), + [anon_sym_LT_LT_PIPE] = ACTIONS(672), + [anon_sym_define] = ACTIONS(674), + [anon_sym_plan] = ACTIONS(674), + [anon_sym_apply] = ACTIONS(674), + [anon_sym_class] = ACTIONS(674), + [anon_sym_node] = ACTIONS(674), + [anon_sym_function] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_DOLLAR] = ACTIONS(672), + [anon_sym_private] = ACTIONS(674), + [anon_sym_attr] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_AT_LPAREN] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_undef] = ACTIONS(674), + [anon_sym_include] = ACTIONS(674), + [anon_sym_require] = ACTIONS(674), + [anon_sym_contain] = ACTIONS(674), + [anon_sym_tag] = ACTIONS(674), + [anon_sym_debug] = ACTIONS(674), + [anon_sym_info] = ACTIONS(674), + [anon_sym_notice] = ACTIONS(674), + [anon_sym_warning] = ACTIONS(674), + [anon_sym_err] = ACTIONS(674), + [anon_sym_fail] = ACTIONS(674), + [sym_type] = ACTIONS(672), + [sym_name] = ACTIONS(674), + [sym_number] = ACTIONS(672), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_qmark] = ACTIONS(672), + }, + [371] = { + [sym_comment] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(670), + [anon_sym_AT_AT] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_in] = ACTIONS(670), + [anon_sym_EQ_TILDE] = ACTIONS(668), + [anon_sym_BANG_TILDE] = ACTIONS(668), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_BANG_EQ] = ACTIONS(668), + [anon_sym_EQ_EQ] = ACTIONS(668), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(668), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(668), + [anon_sym_and] = ACTIONS(670), + [anon_sym_or] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(670), + [anon_sym_unless] = ACTIONS(670), + [anon_sym_case] = ACTIONS(670), + [anon_sym_LT_PIPE] = ACTIONS(668), + [anon_sym_LT_LT_PIPE] = ACTIONS(668), + [anon_sym_define] = ACTIONS(670), + [anon_sym_plan] = ACTIONS(670), + [anon_sym_apply] = ACTIONS(670), + [anon_sym_class] = ACTIONS(670), + [anon_sym_node] = ACTIONS(670), + [anon_sym_function] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_DOLLAR] = ACTIONS(668), + [anon_sym_private] = ACTIONS(670), + [anon_sym_attr] = ACTIONS(670), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_AT_LPAREN] = ACTIONS(668), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_undef] = ACTIONS(670), + [anon_sym_include] = ACTIONS(670), + [anon_sym_require] = ACTIONS(670), + [anon_sym_contain] = ACTIONS(670), + [anon_sym_tag] = ACTIONS(670), + [anon_sym_debug] = ACTIONS(670), + [anon_sym_info] = ACTIONS(670), + [anon_sym_notice] = ACTIONS(670), + [anon_sym_warning] = ACTIONS(670), + [anon_sym_err] = ACTIONS(670), + [anon_sym_fail] = ACTIONS(670), + [sym_type] = ACTIONS(668), + [sym_name] = ACTIONS(670), + [sym_number] = ACTIONS(668), + [sym_true] = ACTIONS(670), + [sym_false] = ACTIONS(670), + [sym_qmark] = ACTIONS(668), + }, + [372] = { + [sym_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_AT] = ACTIONS(658), + [anon_sym_AT_AT] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(656), + [anon_sym_in] = ACTIONS(658), + [anon_sym_EQ_TILDE] = ACTIONS(656), + [anon_sym_BANG_TILDE] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_SLASH] = ACTIONS(656), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_LT_LT] = ACTIONS(658), + [anon_sym_GT_GT] = ACTIONS(656), + [anon_sym_BANG_EQ] = ACTIONS(656), + [anon_sym_EQ_EQ] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(658), + [anon_sym_GT_EQ] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_LT_EQ] = ACTIONS(656), + [anon_sym_and] = ACTIONS(658), + [anon_sym_or] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_DOT] = ACTIONS(656), + [anon_sym_if] = ACTIONS(658), + [anon_sym_unless] = ACTIONS(658), + [anon_sym_case] = ACTIONS(658), + [anon_sym_LT_PIPE] = ACTIONS(656), + [anon_sym_LT_LT_PIPE] = ACTIONS(656), + [anon_sym_define] = ACTIONS(658), + [anon_sym_plan] = ACTIONS(658), + [anon_sym_apply] = ACTIONS(658), + [anon_sym_class] = ACTIONS(658), + [anon_sym_node] = ACTIONS(658), + [anon_sym_function] = ACTIONS(658), + [anon_sym_type] = ACTIONS(658), + [anon_sym_DOLLAR] = ACTIONS(656), + [anon_sym_private] = ACTIONS(658), + [anon_sym_attr] = ACTIONS(658), + [anon_sym_SQUOTE] = ACTIONS(656), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_AT_LPAREN] = ACTIONS(656), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(658), + [anon_sym_default] = ACTIONS(658), + [anon_sym_undef] = ACTIONS(658), + [anon_sym_include] = ACTIONS(658), + [anon_sym_require] = ACTIONS(658), + [anon_sym_contain] = ACTIONS(658), + [anon_sym_tag] = ACTIONS(658), + [anon_sym_debug] = ACTIONS(658), + [anon_sym_info] = ACTIONS(658), + [anon_sym_notice] = ACTIONS(658), + [anon_sym_warning] = ACTIONS(658), + [anon_sym_err] = ACTIONS(658), + [anon_sym_fail] = ACTIONS(658), + [sym_type] = ACTIONS(656), + [sym_name] = ACTIONS(658), + [sym_number] = ACTIONS(656), + [sym_true] = ACTIONS(658), + [sym_false] = ACTIONS(658), + [sym_qmark] = ACTIONS(656), + }, + [373] = { + [sym_comment] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_AT_AT] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_in] = ACTIONS(508), + [anon_sym_EQ_TILDE] = ACTIONS(506), + [anon_sym_BANG_TILDE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_and] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_unless] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_LT_PIPE] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_define] = ACTIONS(508), + [anon_sym_plan] = ACTIONS(508), + [anon_sym_apply] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [anon_sym_node] = ACTIONS(508), + [anon_sym_function] = ACTIONS(508), + [anon_sym_type] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_private] = ACTIONS(508), + [anon_sym_attr] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_AT_LPAREN] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(508), + [anon_sym_default] = ACTIONS(508), + [anon_sym_undef] = ACTIONS(508), + [anon_sym_include] = ACTIONS(508), + [anon_sym_require] = ACTIONS(508), + [anon_sym_contain] = ACTIONS(508), + [anon_sym_tag] = ACTIONS(508), + [anon_sym_debug] = ACTIONS(508), + [anon_sym_info] = ACTIONS(508), + [anon_sym_notice] = ACTIONS(508), + [anon_sym_warning] = ACTIONS(508), + [anon_sym_err] = ACTIONS(508), + [anon_sym_fail] = ACTIONS(508), + [sym_type] = ACTIONS(506), + [sym_name] = ACTIONS(508), + [sym_number] = ACTIONS(506), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_qmark] = ACTIONS(506), + }, + [374] = { + [sym_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_AT_AT] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(742), + [anon_sym_in] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(742), + [anon_sym_BANG_TILDE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(742), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_and] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(742), + [anon_sym_if] = ACTIONS(744), + [anon_sym_unless] = ACTIONS(744), + [anon_sym_case] = ACTIONS(744), + [anon_sym_LT_PIPE] = ACTIONS(742), + [anon_sym_LT_LT_PIPE] = ACTIONS(742), + [anon_sym_define] = ACTIONS(744), + [anon_sym_plan] = ACTIONS(744), + [anon_sym_apply] = ACTIONS(744), + [anon_sym_class] = ACTIONS(744), + [anon_sym_node] = ACTIONS(744), + [anon_sym_function] = ACTIONS(744), + [anon_sym_type] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(742), + [anon_sym_private] = ACTIONS(744), + [anon_sym_attr] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(742), + [anon_sym_AT_LPAREN] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_undef] = ACTIONS(744), + [anon_sym_include] = ACTIONS(744), + [anon_sym_require] = ACTIONS(744), + [anon_sym_contain] = ACTIONS(744), + [anon_sym_tag] = ACTIONS(744), + [anon_sym_debug] = ACTIONS(744), + [anon_sym_info] = ACTIONS(744), + [anon_sym_notice] = ACTIONS(744), + [anon_sym_warning] = ACTIONS(744), + [anon_sym_err] = ACTIONS(744), + [anon_sym_fail] = ACTIONS(744), + [sym_type] = ACTIONS(742), + [sym_name] = ACTIONS(744), + [sym_number] = ACTIONS(742), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_qmark] = ACTIONS(742), + }, + [375] = { + [sym_comment] = STATE(375), + [ts_builtin_sym_end] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_AT_AT] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_in] = ACTIONS(738), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_PERCENT] = ACTIONS(736), + [anon_sym_LT_LT] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_and] = ACTIONS(738), + [anon_sym_or] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_if] = ACTIONS(738), + [anon_sym_unless] = ACTIONS(738), + [anon_sym_case] = ACTIONS(738), + [anon_sym_LT_PIPE] = ACTIONS(736), + [anon_sym_LT_LT_PIPE] = ACTIONS(736), + [anon_sym_define] = ACTIONS(738), + [anon_sym_plan] = ACTIONS(738), + [anon_sym_apply] = ACTIONS(738), + [anon_sym_class] = ACTIONS(738), + [anon_sym_node] = ACTIONS(738), + [anon_sym_function] = ACTIONS(738), + [anon_sym_type] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_private] = ACTIONS(738), + [anon_sym_attr] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_AT_LPAREN] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(738), + [anon_sym_default] = ACTIONS(738), + [anon_sym_undef] = ACTIONS(738), + [anon_sym_include] = ACTIONS(738), + [anon_sym_require] = ACTIONS(738), + [anon_sym_contain] = ACTIONS(738), + [anon_sym_tag] = ACTIONS(738), + [anon_sym_debug] = ACTIONS(738), + [anon_sym_info] = ACTIONS(738), + [anon_sym_notice] = ACTIONS(738), + [anon_sym_warning] = ACTIONS(738), + [anon_sym_err] = ACTIONS(738), + [anon_sym_fail] = ACTIONS(738), + [sym_type] = ACTIONS(736), + [sym_name] = ACTIONS(738), + [sym_number] = ACTIONS(736), + [sym_true] = ACTIONS(738), + [sym_false] = ACTIONS(738), + [sym_qmark] = ACTIONS(736), + }, + [376] = { + [sym_comment] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_AT_AT] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_in] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(602), + [anon_sym_BANG_TILDE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_and] = ACTIONS(604), + [anon_sym_or] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [anon_sym_if] = ACTIONS(604), + [anon_sym_unless] = ACTIONS(604), + [anon_sym_case] = ACTIONS(604), + [anon_sym_LT_PIPE] = ACTIONS(602), + [anon_sym_LT_LT_PIPE] = ACTIONS(602), + [anon_sym_define] = ACTIONS(604), + [anon_sym_plan] = ACTIONS(604), + [anon_sym_apply] = ACTIONS(604), + [anon_sym_class] = ACTIONS(604), + [anon_sym_node] = ACTIONS(604), + [anon_sym_function] = ACTIONS(604), + [anon_sym_type] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(602), + [anon_sym_private] = ACTIONS(604), + [anon_sym_attr] = ACTIONS(604), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_AT_LPAREN] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_undef] = ACTIONS(604), + [anon_sym_include] = ACTIONS(604), + [anon_sym_require] = ACTIONS(604), + [anon_sym_contain] = ACTIONS(604), + [anon_sym_tag] = ACTIONS(604), + [anon_sym_debug] = ACTIONS(604), + [anon_sym_info] = ACTIONS(604), + [anon_sym_notice] = ACTIONS(604), + [anon_sym_warning] = ACTIONS(604), + [anon_sym_err] = ACTIONS(604), + [anon_sym_fail] = ACTIONS(604), + [sym_type] = ACTIONS(602), + [sym_name] = ACTIONS(604), + [sym_number] = ACTIONS(602), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_qmark] = ACTIONS(602), + }, + [377] = { + [sym_comment] = STATE(377), [ts_builtin_sym_end] = ACTIONS(712), [anon_sym_SEMI] = ACTIONS(712), [anon_sym_LBRACE] = ACTIONS(712), @@ -36775,1901 +37457,1439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(714), [sym_qmark] = ACTIONS(712), }, - [371] = { - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_COMMA] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_AT] = ACTIONS(722), - [anon_sym_AT_AT] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_in] = ACTIONS(722), - [anon_sym_EQ_TILDE] = ACTIONS(720), - [anon_sym_BANG_TILDE] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_PERCENT] = ACTIONS(720), - [anon_sym_LT_LT] = ACTIONS(722), - [anon_sym_GT_GT] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_LT] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_and] = ACTIONS(722), - [anon_sym_or] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(720), - [anon_sym_if] = ACTIONS(722), - [anon_sym_unless] = ACTIONS(722), - [anon_sym_case] = ACTIONS(722), - [anon_sym_LT_PIPE] = ACTIONS(720), - [anon_sym_LT_LT_PIPE] = ACTIONS(720), - [anon_sym_define] = ACTIONS(722), - [anon_sym_plan] = ACTIONS(722), - [anon_sym_apply] = ACTIONS(722), - [anon_sym_class] = ACTIONS(722), - [anon_sym_node] = ACTIONS(722), - [anon_sym_function] = ACTIONS(722), - [anon_sym_type] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(720), - [anon_sym_private] = ACTIONS(722), - [anon_sym_attr] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [anon_sym_AT_LPAREN] = ACTIONS(720), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(722), - [anon_sym_default] = ACTIONS(722), - [anon_sym_undef] = ACTIONS(722), - [anon_sym_include] = ACTIONS(722), - [anon_sym_require] = ACTIONS(722), - [anon_sym_contain] = ACTIONS(722), - [anon_sym_tag] = ACTIONS(722), - [anon_sym_debug] = ACTIONS(722), - [anon_sym_info] = ACTIONS(722), - [anon_sym_notice] = ACTIONS(722), - [anon_sym_warning] = ACTIONS(722), - [anon_sym_err] = ACTIONS(722), - [anon_sym_fail] = ACTIONS(722), - [sym_type] = ACTIONS(720), - [sym_name] = ACTIONS(722), - [sym_number] = ACTIONS(720), - [sym_true] = ACTIONS(722), - [sym_false] = ACTIONS(722), - [sym_qmark] = ACTIONS(720), - }, - [372] = { - [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_AT_AT] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_in] = ACTIONS(498), - [anon_sym_EQ_TILDE] = ACTIONS(496), - [anon_sym_BANG_TILDE] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_and] = ACTIONS(498), - [anon_sym_or] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_if] = ACTIONS(498), - [anon_sym_unless] = ACTIONS(498), - [anon_sym_case] = ACTIONS(498), - [anon_sym_LT_PIPE] = ACTIONS(496), - [anon_sym_LT_LT_PIPE] = ACTIONS(496), - [anon_sym_define] = ACTIONS(498), - [anon_sym_plan] = ACTIONS(498), - [anon_sym_apply] = ACTIONS(498), - [anon_sym_class] = ACTIONS(498), - [anon_sym_node] = ACTIONS(498), - [anon_sym_function] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_DOLLAR] = ACTIONS(496), - [anon_sym_private] = ACTIONS(498), - [anon_sym_attr] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_AT_LPAREN] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_undef] = ACTIONS(498), - [anon_sym_include] = ACTIONS(498), - [anon_sym_require] = ACTIONS(498), - [anon_sym_contain] = ACTIONS(498), - [anon_sym_tag] = ACTIONS(498), - [anon_sym_debug] = ACTIONS(498), - [anon_sym_info] = ACTIONS(498), - [anon_sym_notice] = ACTIONS(498), - [anon_sym_warning] = ACTIONS(498), - [anon_sym_err] = ACTIONS(498), - [anon_sym_fail] = ACTIONS(498), - [sym_type] = ACTIONS(496), - [sym_name] = ACTIONS(498), - [sym_number] = ACTIONS(496), - [sym_true] = ACTIONS(498), - [sym_false] = ACTIONS(498), - [sym_qmark] = ACTIONS(496), - }, - [373] = { - [sym_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(716), - [anon_sym_SEMI] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_AT_AT] = ACTIONS(716), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_in] = ACTIONS(718), - [anon_sym_EQ_TILDE] = ACTIONS(716), - [anon_sym_BANG_TILDE] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), - [anon_sym_PERCENT] = ACTIONS(716), - [anon_sym_LT_LT] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(716), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(718), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_and] = ACTIONS(718), - [anon_sym_or] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(716), - [anon_sym_if] = ACTIONS(718), - [anon_sym_unless] = ACTIONS(718), - [anon_sym_case] = ACTIONS(718), - [anon_sym_LT_PIPE] = ACTIONS(716), - [anon_sym_LT_LT_PIPE] = ACTIONS(716), - [anon_sym_define] = ACTIONS(718), - [anon_sym_plan] = ACTIONS(718), - [anon_sym_apply] = ACTIONS(718), - [anon_sym_class] = ACTIONS(718), - [anon_sym_node] = ACTIONS(718), - [anon_sym_function] = ACTIONS(718), - [anon_sym_type] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(716), - [anon_sym_private] = ACTIONS(718), - [anon_sym_attr] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(716), - [anon_sym_AT_LPAREN] = ACTIONS(716), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(718), - [anon_sym_default] = ACTIONS(718), - [anon_sym_undef] = ACTIONS(718), - [anon_sym_include] = ACTIONS(718), - [anon_sym_require] = ACTIONS(718), - [anon_sym_contain] = ACTIONS(718), - [anon_sym_tag] = ACTIONS(718), - [anon_sym_debug] = ACTIONS(718), - [anon_sym_info] = ACTIONS(718), - [anon_sym_notice] = ACTIONS(718), - [anon_sym_warning] = ACTIONS(718), - [anon_sym_err] = ACTIONS(718), - [anon_sym_fail] = ACTIONS(718), - [sym_type] = ACTIONS(716), - [sym_name] = ACTIONS(718), - [sym_number] = ACTIONS(716), - [sym_true] = ACTIONS(718), - [sym_false] = ACTIONS(718), - [sym_qmark] = ACTIONS(716), - }, - [374] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(374), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [375] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1419), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(375), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [376] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(376), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [377] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(377), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, [378] = { - [sym__expression] = STATE(968), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(378), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_EQ_GT] = ACTIONS(891), - [anon_sym_PLUS_GT] = ACTIONS(891), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(750), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_AT_AT] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_in] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(750), + [anon_sym_BANG_TILDE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_LT_LT] = ACTIONS(752), + [anon_sym_GT_GT] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_and] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(750), + [anon_sym_if] = ACTIONS(752), + [anon_sym_unless] = ACTIONS(752), + [anon_sym_case] = ACTIONS(752), + [anon_sym_LT_PIPE] = ACTIONS(750), + [anon_sym_LT_LT_PIPE] = ACTIONS(750), + [anon_sym_define] = ACTIONS(752), + [anon_sym_plan] = ACTIONS(752), + [anon_sym_apply] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_node] = ACTIONS(752), + [anon_sym_function] = ACTIONS(752), + [anon_sym_type] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_private] = ACTIONS(752), + [anon_sym_attr] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(750), + [anon_sym_AT_LPAREN] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_undef] = ACTIONS(752), + [anon_sym_include] = ACTIONS(752), + [anon_sym_require] = ACTIONS(752), + [anon_sym_contain] = ACTIONS(752), + [anon_sym_tag] = ACTIONS(752), + [anon_sym_debug] = ACTIONS(752), + [anon_sym_info] = ACTIONS(752), + [anon_sym_notice] = ACTIONS(752), + [anon_sym_warning] = ACTIONS(752), + [anon_sym_err] = ACTIONS(752), + [anon_sym_fail] = ACTIONS(752), + [sym_type] = ACTIONS(750), + [sym_name] = ACTIONS(752), + [sym_number] = ACTIONS(750), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_qmark] = ACTIONS(750), }, [379] = { - [sym__expression] = STATE(914), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(379), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_EQ_GT] = ACTIONS(891), - [anon_sym_PLUS_GT] = ACTIONS(891), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_AT_AT] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_STAR] = ACTIONS(574), + [anon_sym_in] = ACTIONS(576), + [anon_sym_EQ_TILDE] = ACTIONS(574), + [anon_sym_BANG_TILDE] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_SLASH] = ACTIONS(574), + [anon_sym_PERCENT] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_and] = ACTIONS(576), + [anon_sym_or] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(574), + [anon_sym_if] = ACTIONS(576), + [anon_sym_unless] = ACTIONS(576), + [anon_sym_case] = ACTIONS(576), + [anon_sym_LT_PIPE] = ACTIONS(574), + [anon_sym_LT_LT_PIPE] = ACTIONS(574), + [anon_sym_define] = ACTIONS(576), + [anon_sym_plan] = ACTIONS(576), + [anon_sym_apply] = ACTIONS(576), + [anon_sym_class] = ACTIONS(576), + [anon_sym_node] = ACTIONS(576), + [anon_sym_function] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_private] = ACTIONS(576), + [anon_sym_attr] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_AT_LPAREN] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_undef] = ACTIONS(576), + [anon_sym_include] = ACTIONS(576), + [anon_sym_require] = ACTIONS(576), + [anon_sym_contain] = ACTIONS(576), + [anon_sym_tag] = ACTIONS(576), + [anon_sym_debug] = ACTIONS(576), + [anon_sym_info] = ACTIONS(576), + [anon_sym_notice] = ACTIONS(576), + [anon_sym_warning] = ACTIONS(576), + [anon_sym_err] = ACTIONS(576), + [anon_sym_fail] = ACTIONS(576), + [sym_type] = ACTIONS(574), + [sym_name] = ACTIONS(576), + [sym_number] = ACTIONS(574), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [sym_qmark] = ACTIONS(574), }, [380] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1463), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(380), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_AT_AT] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_in] = ACTIONS(568), + [anon_sym_EQ_TILDE] = ACTIONS(566), + [anon_sym_BANG_TILDE] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_and] = ACTIONS(568), + [anon_sym_or] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_if] = ACTIONS(568), + [anon_sym_unless] = ACTIONS(568), + [anon_sym_case] = ACTIONS(568), + [anon_sym_LT_PIPE] = ACTIONS(566), + [anon_sym_LT_LT_PIPE] = ACTIONS(566), + [anon_sym_define] = ACTIONS(568), + [anon_sym_plan] = ACTIONS(568), + [anon_sym_apply] = ACTIONS(568), + [anon_sym_class] = ACTIONS(568), + [anon_sym_node] = ACTIONS(568), + [anon_sym_function] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_private] = ACTIONS(568), + [anon_sym_attr] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_AT_LPAREN] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_undef] = ACTIONS(568), + [anon_sym_include] = ACTIONS(568), + [anon_sym_require] = ACTIONS(568), + [anon_sym_contain] = ACTIONS(568), + [anon_sym_tag] = ACTIONS(568), + [anon_sym_debug] = ACTIONS(568), + [anon_sym_info] = ACTIONS(568), + [anon_sym_notice] = ACTIONS(568), + [anon_sym_warning] = ACTIONS(568), + [anon_sym_err] = ACTIONS(568), + [anon_sym_fail] = ACTIONS(568), + [sym_type] = ACTIONS(566), + [sym_name] = ACTIONS(568), + [sym_number] = ACTIONS(566), + [sym_true] = ACTIONS(568), + [sym_false] = ACTIONS(568), + [sym_qmark] = ACTIONS(566), }, [381] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(381), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_AT_AT] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_EQ_TILDE] = ACTIONS(468), + [anon_sym_BANG_TILDE] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_and] = ACTIONS(470), + [anon_sym_or] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [anon_sym_if] = ACTIONS(470), + [anon_sym_unless] = ACTIONS(470), + [anon_sym_case] = ACTIONS(470), + [anon_sym_LT_PIPE] = ACTIONS(468), + [anon_sym_LT_LT_PIPE] = ACTIONS(468), + [anon_sym_define] = ACTIONS(470), + [anon_sym_plan] = ACTIONS(470), + [anon_sym_apply] = ACTIONS(470), + [anon_sym_class] = ACTIONS(470), + [anon_sym_node] = ACTIONS(470), + [anon_sym_function] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_DOLLAR] = ACTIONS(468), + [anon_sym_private] = ACTIONS(470), + [anon_sym_attr] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_AT_LPAREN] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_undef] = ACTIONS(470), + [anon_sym_include] = ACTIONS(470), + [anon_sym_require] = ACTIONS(470), + [anon_sym_contain] = ACTIONS(470), + [anon_sym_tag] = ACTIONS(470), + [anon_sym_debug] = ACTIONS(470), + [anon_sym_info] = ACTIONS(470), + [anon_sym_notice] = ACTIONS(470), + [anon_sym_warning] = ACTIONS(470), + [anon_sym_err] = ACTIONS(470), + [anon_sym_fail] = ACTIONS(470), + [sym_type] = ACTIONS(468), + [sym_name] = ACTIONS(470), + [sym_number] = ACTIONS(468), + [sym_true] = ACTIONS(470), + [sym_false] = ACTIONS(470), + [sym_qmark] = ACTIONS(468), }, [382] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1542), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(382), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_AT_AT] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_in] = ACTIONS(564), + [anon_sym_EQ_TILDE] = ACTIONS(562), + [anon_sym_BANG_TILDE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_and] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_unless] = ACTIONS(564), + [anon_sym_case] = ACTIONS(564), + [anon_sym_LT_PIPE] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_define] = ACTIONS(564), + [anon_sym_plan] = ACTIONS(564), + [anon_sym_apply] = ACTIONS(564), + [anon_sym_class] = ACTIONS(564), + [anon_sym_node] = ACTIONS(564), + [anon_sym_function] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(562), + [anon_sym_private] = ACTIONS(564), + [anon_sym_attr] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(562), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_AT_LPAREN] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_undef] = ACTIONS(564), + [anon_sym_include] = ACTIONS(564), + [anon_sym_require] = ACTIONS(564), + [anon_sym_contain] = ACTIONS(564), + [anon_sym_tag] = ACTIONS(564), + [anon_sym_debug] = ACTIONS(564), + [anon_sym_info] = ACTIONS(564), + [anon_sym_notice] = ACTIONS(564), + [anon_sym_warning] = ACTIONS(564), + [anon_sym_err] = ACTIONS(564), + [anon_sym_fail] = ACTIONS(564), + [sym_type] = ACTIONS(562), + [sym_name] = ACTIONS(564), + [sym_number] = ACTIONS(562), + [sym_true] = ACTIONS(564), + [sym_false] = ACTIONS(564), + [sym_qmark] = ACTIONS(562), }, [383] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1539), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(383), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_AT_AT] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_in] = ACTIONS(710), + [anon_sym_EQ_TILDE] = ACTIONS(708), + [anon_sym_BANG_TILDE] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_SLASH] = ACTIONS(708), + [anon_sym_PERCENT] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(708), + [anon_sym_BANG_EQ] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(710), + [anon_sym_GT_EQ] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(708), + [anon_sym_and] = ACTIONS(710), + [anon_sym_or] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_DOT] = ACTIONS(708), + [anon_sym_if] = ACTIONS(710), + [anon_sym_unless] = ACTIONS(710), + [anon_sym_case] = ACTIONS(710), + [anon_sym_LT_PIPE] = ACTIONS(708), + [anon_sym_LT_LT_PIPE] = ACTIONS(708), + [anon_sym_define] = ACTIONS(710), + [anon_sym_plan] = ACTIONS(710), + [anon_sym_apply] = ACTIONS(710), + [anon_sym_class] = ACTIONS(710), + [anon_sym_node] = ACTIONS(710), + [anon_sym_function] = ACTIONS(710), + [anon_sym_type] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_private] = ACTIONS(710), + [anon_sym_attr] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_AT_LPAREN] = ACTIONS(708), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(710), + [anon_sym_default] = ACTIONS(710), + [anon_sym_undef] = ACTIONS(710), + [anon_sym_include] = ACTIONS(710), + [anon_sym_require] = ACTIONS(710), + [anon_sym_contain] = ACTIONS(710), + [anon_sym_tag] = ACTIONS(710), + [anon_sym_debug] = ACTIONS(710), + [anon_sym_info] = ACTIONS(710), + [anon_sym_notice] = ACTIONS(710), + [anon_sym_warning] = ACTIONS(710), + [anon_sym_err] = ACTIONS(710), + [anon_sym_fail] = ACTIONS(710), + [sym_type] = ACTIONS(708), + [sym_name] = ACTIONS(710), + [sym_number] = ACTIONS(708), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_qmark] = ACTIONS(708), }, [384] = { - [sym__expression] = STATE(915), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(384), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_EQ_GT] = ACTIONS(891), - [anon_sym_PLUS_GT] = ACTIONS(891), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_AT_AT] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_in] = ACTIONS(552), + [anon_sym_EQ_TILDE] = ACTIONS(550), + [anon_sym_BANG_TILDE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_and] = ACTIONS(552), + [anon_sym_or] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_if] = ACTIONS(552), + [anon_sym_unless] = ACTIONS(552), + [anon_sym_case] = ACTIONS(552), + [anon_sym_LT_PIPE] = ACTIONS(550), + [anon_sym_LT_LT_PIPE] = ACTIONS(550), + [anon_sym_define] = ACTIONS(552), + [anon_sym_plan] = ACTIONS(552), + [anon_sym_apply] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [anon_sym_node] = ACTIONS(552), + [anon_sym_function] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_DOLLAR] = ACTIONS(550), + [anon_sym_private] = ACTIONS(552), + [anon_sym_attr] = ACTIONS(552), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(550), + [anon_sym_AT_LPAREN] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_undef] = ACTIONS(552), + [anon_sym_include] = ACTIONS(552), + [anon_sym_require] = ACTIONS(552), + [anon_sym_contain] = ACTIONS(552), + [anon_sym_tag] = ACTIONS(552), + [anon_sym_debug] = ACTIONS(552), + [anon_sym_info] = ACTIONS(552), + [anon_sym_notice] = ACTIONS(552), + [anon_sym_warning] = ACTIONS(552), + [anon_sym_err] = ACTIONS(552), + [anon_sym_fail] = ACTIONS(552), + [sym_type] = ACTIONS(550), + [sym_name] = ACTIONS(552), + [sym_number] = ACTIONS(550), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_qmark] = ACTIONS(550), }, [385] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(385), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_AT_AT] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_in] = ACTIONS(544), + [anon_sym_EQ_TILDE] = ACTIONS(542), + [anon_sym_BANG_TILDE] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_LT_LT] = ACTIONS(544), + [anon_sym_GT_GT] = ACTIONS(542), + [anon_sym_BANG_EQ] = ACTIONS(542), + [anon_sym_EQ_EQ] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(542), + [anon_sym_and] = ACTIONS(544), + [anon_sym_or] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(542), + [anon_sym_if] = ACTIONS(544), + [anon_sym_unless] = ACTIONS(544), + [anon_sym_case] = ACTIONS(544), + [anon_sym_LT_PIPE] = ACTIONS(542), + [anon_sym_LT_LT_PIPE] = ACTIONS(542), + [anon_sym_define] = ACTIONS(544), + [anon_sym_plan] = ACTIONS(544), + [anon_sym_apply] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [anon_sym_node] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [anon_sym_type] = ACTIONS(544), + [anon_sym_DOLLAR] = ACTIONS(542), + [anon_sym_private] = ACTIONS(544), + [anon_sym_attr] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(542), + [anon_sym_DQUOTE] = ACTIONS(542), + [anon_sym_AT_LPAREN] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(544), + [anon_sym_default] = ACTIONS(544), + [anon_sym_undef] = ACTIONS(544), + [anon_sym_include] = ACTIONS(544), + [anon_sym_require] = ACTIONS(544), + [anon_sym_contain] = ACTIONS(544), + [anon_sym_tag] = ACTIONS(544), + [anon_sym_debug] = ACTIONS(544), + [anon_sym_info] = ACTIONS(544), + [anon_sym_notice] = ACTIONS(544), + [anon_sym_warning] = ACTIONS(544), + [anon_sym_err] = ACTIONS(544), + [anon_sym_fail] = ACTIONS(544), + [sym_type] = ACTIONS(542), + [sym_name] = ACTIONS(544), + [sym_number] = ACTIONS(542), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_qmark] = ACTIONS(542), }, [386] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1415), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(386), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_AT_AT] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_in] = ACTIONS(516), + [anon_sym_EQ_TILDE] = ACTIONS(514), + [anon_sym_BANG_TILDE] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_BANG_EQ] = ACTIONS(514), + [anon_sym_EQ_EQ] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(514), + [anon_sym_and] = ACTIONS(516), + [anon_sym_or] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_unless] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_LT_PIPE] = ACTIONS(514), + [anon_sym_LT_LT_PIPE] = ACTIONS(514), + [anon_sym_define] = ACTIONS(516), + [anon_sym_plan] = ACTIONS(516), + [anon_sym_apply] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_node] = ACTIONS(516), + [anon_sym_function] = ACTIONS(516), + [anon_sym_type] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(514), + [anon_sym_private] = ACTIONS(516), + [anon_sym_attr] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(514), + [anon_sym_AT_LPAREN] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(516), + [anon_sym_default] = ACTIONS(516), + [anon_sym_undef] = ACTIONS(516), + [anon_sym_include] = ACTIONS(516), + [anon_sym_require] = ACTIONS(516), + [anon_sym_contain] = ACTIONS(516), + [anon_sym_tag] = ACTIONS(516), + [anon_sym_debug] = ACTIONS(516), + [anon_sym_info] = ACTIONS(516), + [anon_sym_notice] = ACTIONS(516), + [anon_sym_warning] = ACTIONS(516), + [anon_sym_err] = ACTIONS(516), + [anon_sym_fail] = ACTIONS(516), + [sym_type] = ACTIONS(514), + [sym_name] = ACTIONS(516), + [sym_number] = ACTIONS(514), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_qmark] = ACTIONS(514), }, [387] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym__selector_option_list] = STATE(1436), - [sym_selector_option] = STATE(1531), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(387), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_AT_AT] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_in] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(648), + [anon_sym_BANG_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(648), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(648), + [anon_sym_if] = ACTIONS(650), + [anon_sym_unless] = ACTIONS(650), + [anon_sym_case] = ACTIONS(650), + [anon_sym_LT_PIPE] = ACTIONS(648), + [anon_sym_LT_LT_PIPE] = ACTIONS(648), + [anon_sym_define] = ACTIONS(650), + [anon_sym_plan] = ACTIONS(650), + [anon_sym_apply] = ACTIONS(650), + [anon_sym_class] = ACTIONS(650), + [anon_sym_node] = ACTIONS(650), + [anon_sym_function] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(648), + [anon_sym_private] = ACTIONS(650), + [anon_sym_attr] = ACTIONS(650), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_AT_LPAREN] = ACTIONS(648), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_undef] = ACTIONS(650), + [anon_sym_include] = ACTIONS(650), + [anon_sym_require] = ACTIONS(650), + [anon_sym_contain] = ACTIONS(650), + [anon_sym_tag] = ACTIONS(650), + [anon_sym_debug] = ACTIONS(650), + [anon_sym_info] = ACTIONS(650), + [anon_sym_notice] = ACTIONS(650), + [anon_sym_warning] = ACTIONS(650), + [anon_sym_err] = ACTIONS(650), + [anon_sym_fail] = ACTIONS(650), + [sym_type] = ACTIONS(648), + [sym_name] = ACTIONS(650), + [sym_number] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_qmark] = ACTIONS(648), }, [388] = { - [sym__expression] = STATE(963), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_selector_option] = STATE(1535), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(388), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_AT_AT] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_in] = ACTIONS(654), + [anon_sym_EQ_TILDE] = ACTIONS(652), + [anon_sym_BANG_TILDE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_and] = ACTIONS(654), + [anon_sym_or] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(654), + [anon_sym_unless] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_LT_PIPE] = ACTIONS(652), + [anon_sym_LT_LT_PIPE] = ACTIONS(652), + [anon_sym_define] = ACTIONS(654), + [anon_sym_plan] = ACTIONS(654), + [anon_sym_apply] = ACTIONS(654), + [anon_sym_class] = ACTIONS(654), + [anon_sym_node] = ACTIONS(654), + [anon_sym_function] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_private] = ACTIONS(654), + [anon_sym_attr] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_AT_LPAREN] = ACTIONS(652), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_undef] = ACTIONS(654), + [anon_sym_include] = ACTIONS(654), + [anon_sym_require] = ACTIONS(654), + [anon_sym_contain] = ACTIONS(654), + [anon_sym_tag] = ACTIONS(654), + [anon_sym_debug] = ACTIONS(654), + [anon_sym_info] = ACTIONS(654), + [anon_sym_notice] = ACTIONS(654), + [anon_sym_warning] = ACTIONS(654), + [anon_sym_err] = ACTIONS(654), + [anon_sym_fail] = ACTIONS(654), + [sym_type] = ACTIONS(652), + [sym_name] = ACTIONS(654), + [sym_number] = ACTIONS(652), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_qmark] = ACTIONS(652), }, [389] = { - [sym__expression] = STATE(947), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(389), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(905), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_AT_AT] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_in] = ACTIONS(702), + [anon_sym_EQ_TILDE] = ACTIONS(700), + [anon_sym_BANG_TILDE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(702), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_BANG_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(700), + [anon_sym_GT] = ACTIONS(702), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(702), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_and] = ACTIONS(702), + [anon_sym_or] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_if] = ACTIONS(702), + [anon_sym_unless] = ACTIONS(702), + [anon_sym_case] = ACTIONS(702), + [anon_sym_LT_PIPE] = ACTIONS(700), + [anon_sym_LT_LT_PIPE] = ACTIONS(700), + [anon_sym_define] = ACTIONS(702), + [anon_sym_plan] = ACTIONS(702), + [anon_sym_apply] = ACTIONS(702), + [anon_sym_class] = ACTIONS(702), + [anon_sym_node] = ACTIONS(702), + [anon_sym_function] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_private] = ACTIONS(702), + [anon_sym_attr] = ACTIONS(702), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_AT_LPAREN] = ACTIONS(700), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_undef] = ACTIONS(702), + [anon_sym_include] = ACTIONS(702), + [anon_sym_require] = ACTIONS(702), + [anon_sym_contain] = ACTIONS(702), + [anon_sym_tag] = ACTIONS(702), + [anon_sym_debug] = ACTIONS(702), + [anon_sym_info] = ACTIONS(702), + [anon_sym_notice] = ACTIONS(702), + [anon_sym_warning] = ACTIONS(702), + [anon_sym_err] = ACTIONS(702), + [anon_sym_fail] = ACTIONS(702), + [sym_type] = ACTIONS(700), + [sym_name] = ACTIONS(702), + [sym_number] = ACTIONS(700), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_qmark] = ACTIONS(700), }, [390] = { - [sym__statement_function_args] = STATE(604), - [sym__expression] = STATE(271), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(938), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_selector_option] = STATE(1508), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(390), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [391] = { - [sym__expression] = STATE(957), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(391), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(963), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_AT_AT] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_STAR] = ACTIONS(684), + [anon_sym_in] = ACTIONS(686), + [anon_sym_EQ_TILDE] = ACTIONS(684), + [anon_sym_BANG_TILDE] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_SLASH] = ACTIONS(684), + [anon_sym_PERCENT] = ACTIONS(684), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_BANG_EQ] = ACTIONS(684), + [anon_sym_EQ_EQ] = ACTIONS(684), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_LT_EQ] = ACTIONS(684), + [anon_sym_and] = ACTIONS(686), + [anon_sym_or] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(684), + [anon_sym_if] = ACTIONS(686), + [anon_sym_unless] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_LT_PIPE] = ACTIONS(684), + [anon_sym_LT_LT_PIPE] = ACTIONS(684), + [anon_sym_define] = ACTIONS(686), + [anon_sym_plan] = ACTIONS(686), + [anon_sym_apply] = ACTIONS(686), + [anon_sym_class] = ACTIONS(686), + [anon_sym_node] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_type] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_private] = ACTIONS(686), + [anon_sym_attr] = ACTIONS(686), + [anon_sym_SQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_AT_LPAREN] = ACTIONS(684), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(686), + [anon_sym_default] = ACTIONS(686), + [anon_sym_undef] = ACTIONS(686), + [anon_sym_include] = ACTIONS(686), + [anon_sym_require] = ACTIONS(686), + [anon_sym_contain] = ACTIONS(686), + [anon_sym_tag] = ACTIONS(686), + [anon_sym_debug] = ACTIONS(686), + [anon_sym_info] = ACTIONS(686), + [anon_sym_notice] = ACTIONS(686), + [anon_sym_warning] = ACTIONS(686), + [anon_sym_err] = ACTIONS(686), + [anon_sym_fail] = ACTIONS(686), + [sym_type] = ACTIONS(684), + [sym_name] = ACTIONS(686), + [sym_number] = ACTIONS(684), + [sym_true] = ACTIONS(686), + [sym_false] = ACTIONS(686), + [sym_qmark] = ACTIONS(684), }, [392] = { - [sym__expression] = STATE(740), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), [sym_comment] = STATE(392), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_EQ_GT] = ACTIONS(965), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [ts_builtin_sym_end] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(690), + [anon_sym_AT_AT] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_in] = ACTIONS(690), + [anon_sym_EQ_TILDE] = ACTIONS(688), + [anon_sym_BANG_TILDE] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_SLASH] = ACTIONS(688), + [anon_sym_PERCENT] = ACTIONS(688), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(688), + [anon_sym_BANG_EQ] = ACTIONS(688), + [anon_sym_EQ_EQ] = ACTIONS(688), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(688), + [anon_sym_and] = ACTIONS(690), + [anon_sym_or] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_DOT] = ACTIONS(688), + [anon_sym_if] = ACTIONS(690), + [anon_sym_unless] = ACTIONS(690), + [anon_sym_case] = ACTIONS(690), + [anon_sym_LT_PIPE] = ACTIONS(688), + [anon_sym_LT_LT_PIPE] = ACTIONS(688), + [anon_sym_define] = ACTIONS(690), + [anon_sym_plan] = ACTIONS(690), + [anon_sym_apply] = ACTIONS(690), + [anon_sym_class] = ACTIONS(690), + [anon_sym_node] = ACTIONS(690), + [anon_sym_function] = ACTIONS(690), + [anon_sym_type] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_private] = ACTIONS(690), + [anon_sym_attr] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_AT_LPAREN] = ACTIONS(688), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_undef] = ACTIONS(690), + [anon_sym_include] = ACTIONS(690), + [anon_sym_require] = ACTIONS(690), + [anon_sym_contain] = ACTIONS(690), + [anon_sym_tag] = ACTIONS(690), + [anon_sym_debug] = ACTIONS(690), + [anon_sym_info] = ACTIONS(690), + [anon_sym_notice] = ACTIONS(690), + [anon_sym_warning] = ACTIONS(690), + [anon_sym_err] = ACTIONS(690), + [anon_sym_fail] = ACTIONS(690), + [sym_type] = ACTIONS(688), + [sym_name] = ACTIONS(690), + [sym_number] = ACTIONS(688), + [sym_true] = ACTIONS(690), + [sym_false] = ACTIONS(690), + [sym_qmark] = ACTIONS(688), }, [393] = { - [sym__expression] = STATE(954), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(935), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(393), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(985), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_PIPE_GT_GT] = ACTIONS(925), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [394] = { - [sym__expression] = STATE(953), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__statement_function_args] = STATE(604), + [sym__expression] = STATE(899), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(394), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(985), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [395] = { - [sym__expression] = STATE(950), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__statement_function_args] = STATE(604), + [sym__expression] = STATE(277), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(395), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(1025), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [396] = { - [sym__expression] = STATE(949), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(930), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(396), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), [anon_sym_PIPE_GT] = ACTIONS(1025), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [397] = { - [sym__expression] = STATE(940), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(936), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(397), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(1027), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_PIPE_GT] = ACTIONS(925), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [398] = { - [sym__statement_function_args] = STATE(600), - [sym__expression] = STATE(271), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(963), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(398), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -38677,1008 +38897,960 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_PIPE_GT_GT] = ACTIONS(1029), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [399] = { - [sym__expression] = STATE(956), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(962), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(399), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_PIPE_GT] = ACTIONS(1031), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_PIPE_GT] = ACTIONS(1029), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [400] = { - [sym__expression] = STATE(942), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(761), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(400), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(1027), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [401] = { - [sym__expression] = STATE(955), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(970), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(401), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(1031), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_PIPE_GT_GT] = ACTIONS(1033), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [402] = { - [sym__expression] = STATE(952), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__statement_function_args] = STATE(609), + [sym__expression] = STATE(277), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(402), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(963), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [403] = { - [sym__statement_function_args] = STATE(600), - [sym__expression] = STATE(900), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(971), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(403), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_PIPE_GT] = ACTIONS(1033), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [404] = { - [sym__expression] = STATE(948), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(933), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(404), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_PIPE_GT_GT] = ACTIONS(905), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_PIPE_GT] = ACTIONS(1037), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [405] = { - [sym__expression] = STATE(984), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(932), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(405), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_PIPE_GT_GT] = ACTIONS(1037), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [406] = { - [sym__expression] = STATE(960), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(940), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(406), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_PIPE_GT_GT] = ACTIONS(1039), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [407] = { - [sym__expression] = STATE(932), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(931), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(407), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_PIPE_GT_GT] = ACTIONS(1025), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [408] = { - [sym__expression] = STATE(933), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(939), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(408), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_PIPE_GT] = ACTIONS(1039), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [409] = { - [sym__expression] = STATE(934), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(908), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(409), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [410] = { - [sym__expression] = STATE(962), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(750), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(410), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [411] = { - [sym__expression] = STATE(935), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(1002), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(411), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [412] = { - [sym__expression] = STATE(936), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(130), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(412), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [413] = { - [sym__expression] = STATE(128), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(413), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -39691,7 +39863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -39711,174 +39883,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, + [413] = { + [sym__expression] = STATE(1001), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(413), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, [414] = { - [sym__expression] = STATE(927), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(142), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(414), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), }, [415] = { - [sym__expression] = STATE(903), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(1000), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(415), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [416] = { - [sym__expression] = STATE(127), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(140), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(416), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -39892,7 +40135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -39913,442 +40156,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [417] = { - [sym__expression] = STATE(930), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(139), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(417), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [418] = { - [sym__expression] = STATE(929), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(418), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [419] = { - [sym__expression] = STATE(970), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(419), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [420] = { - [sym__expression] = STATE(969), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(420), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [421] = { - [sym__expression] = STATE(968), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(421), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [422] = { - [sym__expression] = STATE(966), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(422), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [423] = { - [sym__expression] = STATE(124), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(423), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -40361,7 +40203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -40381,41 +40223,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [424] = { - [sym__expression] = STATE(135), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(424), + [418] = { + [sym__expression] = STATE(137), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(418), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -40428,7 +40271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -40448,41 +40291,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [425] = { + [419] = { + [sym__expression] = STATE(961), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(419), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [420] = { [sym__expression] = STATE(116), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(425), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(420), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -40495,7 +40407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -40515,445 +40427,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, + [421] = { + [sym__expression] = STATE(999), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(421), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [422] = { + [sym__expression] = STATE(998), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(422), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [423] = { + [sym__expression] = STATE(997), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(423), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [424] = { + [sym__expression] = STATE(996), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(424), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [425] = { + [sym__expression] = STATE(995), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(425), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, [426] = { - [sym__expression] = STATE(851), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(994), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(426), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [427] = { - [sym__expression] = STATE(850), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(870), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(427), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [428] = { - [sym__expression] = STATE(856), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(992), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(428), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [429] = { - [sym__expression] = STATE(951), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(991), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(429), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [430] = { - [sym__expression] = STATE(855), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(860), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(430), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [431] = { - [sym__expression] = STATE(854), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(878), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(431), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [432] = { - [sym__expression] = STATE(260), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(990), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(432), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -40961,66 +41220,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [433] = { - [sym__expression] = STATE(269), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(993), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(433), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -41028,267 +41288,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [434] = { - [sym__expression] = STATE(275), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(857), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(434), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [435] = { - [sym__expression] = STATE(274), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), + [sym__expression] = STATE(256), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(435), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [436] = { - [sym__expression] = STATE(273), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(880), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(436), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [437] = { - [sym__expression] = STATE(272), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(988), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(437), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -41296,66 +41560,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [438] = { - [sym__expression] = STATE(270), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(986), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(438), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -41363,63 +41628,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [439] = { [sym__expression] = STATE(125), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(439), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), @@ -41433,7 +41699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -41454,40 +41720,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(67), }, [440] = { - [sym__expression] = STATE(136), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(252), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(440), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), + }, + [441] = { + [sym__expression] = STATE(1003), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(441), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [442] = { + [sym__expression] = STATE(131), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(442), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -41500,7 +41903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -41520,41 +41923,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [441] = { - [sym__expression] = STATE(141), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(441), + [443] = { + [sym__expression] = STATE(134), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(443), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), + }, + [444] = { + [sym__expression] = STATE(118), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(444), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), + }, + [445] = { + [sym__expression] = STATE(119), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(445), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -41567,7 +42107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -41587,124 +42127,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [442] = { - [sym__expression] = STATE(928), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(442), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [443] = { - [sym__expression] = STATE(629), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(443), + [446] = { + [sym__expression] = STATE(623), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(446), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -41721,57 +42195,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [444] = { - [sym__expression] = STATE(630), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(444), + [447] = { + [sym__expression] = STATE(638), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(447), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -41788,57 +42263,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [445] = { - [sym__expression] = STATE(631), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(445), + [448] = { + [sym__expression] = STATE(637), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(448), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -41855,57 +42331,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [446] = { - [sym__expression] = STATE(632), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(446), + [449] = { + [sym__expression] = STATE(622), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(449), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -41922,57 +42399,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [447] = { - [sym__expression] = STATE(633), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(447), + [450] = { + [sym__expression] = STATE(635), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(450), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -41989,57 +42467,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [448] = { + [451] = { [sym__expression] = STATE(634), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(448), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(451), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42056,57 +42535,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [449] = { - [sym__expression] = STATE(619), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(449), + [452] = { + [sym__expression] = STATE(633), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(452), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42123,57 +42603,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [450] = { - [sym__expression] = STATE(622), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(450), + [453] = { + [sym__expression] = STATE(632), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(453), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42190,57 +42671,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [451] = { - [sym__expression] = STATE(643), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(451), + [454] = { + [sym__expression] = STATE(631), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(454), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42257,57 +42739,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [452] = { - [sym__expression] = STATE(635), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(452), + [455] = { + [sym__expression] = STATE(630), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(455), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42324,57 +42807,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [453] = { - [sym__expression] = STATE(621), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(453), + [456] = { + [sym__expression] = STATE(629), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(456), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42391,57 +42875,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [454] = { - [sym__expression] = STATE(644), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(454), + [457] = { + [sym__expression] = STATE(628), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(457), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42458,57 +42943,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [455] = { - [sym__expression] = STATE(618), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(455), + [458] = { + [sym__expression] = STATE(627), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(458), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42525,57 +43011,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [456] = { - [sym__expression] = STATE(642), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(456), + [459] = { + [sym__expression] = STATE(626), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(459), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42592,57 +43079,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [457] = { - [sym__expression] = STATE(641), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(457), + [460] = { + [sym__expression] = STATE(625), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(460), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42659,57 +43147,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [458] = { - [sym__expression] = STATE(640), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(458), + [461] = { + [sym__expression] = STATE(624), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(461), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42726,57 +43215,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [459] = { - [sym__expression] = STATE(638), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(459), + [462] = { + [sym__expression] = STATE(639), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(462), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42793,57 +43283,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [460] = { - [sym__expression] = STATE(637), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(460), + [463] = { + [sym__expression] = STATE(640), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), + [sym_comment] = STATE(463), [anon_sym_LBRACE] = ACTIONS(117), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), [anon_sym_if] = ACTIONS(131), [anon_sym_unless] = ACTIONS(133), [anon_sym_case] = ACTIONS(135), [anon_sym_define] = ACTIONS(137), [anon_sym_plan] = ACTIONS(139), [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1099), [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), [anon_sym_DOLLAR] = ACTIONS(151), [anon_sym_private] = ACTIONS(153), [anon_sym_attr] = ACTIONS(153), @@ -42860,242 +43351,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(175), [sym_false] = ACTIONS(175), }, - [461] = { - [sym__expression] = STATE(249), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), - [sym_comment] = STATE(461), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - }, - [462] = { - [sym__expression] = STATE(268), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), - [sym_comment] = STATE(462), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - }, - [463] = { - [sym__expression] = STATE(267), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), - [sym_comment] = STATE(463), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - }, [464] = { - [sym__expression] = STATE(120), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(960), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(464), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [465] = { + [sym__expression] = STATE(138), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(465), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -43108,7 +43467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -43128,311 +43487,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [465] = { - [sym__expression] = STATE(250), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), - [sym_comment] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - }, [466] = { - [sym__expression] = STATE(264), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(978), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(466), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [467] = { - [sym__expression] = STATE(263), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(643), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(467), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(1099), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), }, [468] = { - [sym__expression] = STATE(262), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(644), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(468), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(1099), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), }, [469] = { - [sym__expression] = STATE(261), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(1004), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(469), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), [anon_sym_BANG] = ACTIONS(911), [anon_sym_DASH] = ACTIONS(913), [anon_sym_STAR] = ACTIONS(915), @@ -43440,2677 +43736,2785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(919), [anon_sym_unless] = ACTIONS(921), [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [470] = { - [sym__expression] = STATE(259), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(648), + [sym_unary] = STATE(668), + [sym_binary] = STATE(668), + [sym__bracketed_expression] = STATE(669), + [sym__primary_expression] = STATE(668), + [sym_function_call] = STATE(668), + [sym_call_method_with_lambda] = STATE(665), + [sym_call_method] = STATE(617), + [sym_named_access] = STATE(652), + [sym_if] = STATE(665), + [sym_unless] = STATE(665), + [sym_case] = STATE(665), + [sym_resource_collector] = STATE(665), + [sym_define_definition] = STATE(665), + [sym_plan_definition] = STATE(665), + [sym_apply_expression] = STATE(665), + [sym_class_definition] = STATE(665), + [sym_node_definition] = STATE(665), + [sym_function_definition] = STATE(665), + [sym_type_alias] = STATE(665), + [sym__type_alias_lhs] = STATE(1616), + [sym_type_definition] = STATE(665), + [sym_variable] = STATE(665), + [sym_reserved_word] = STATE(665), + [sym__quotedtext] = STATE(665), + [sym_single_quoted_string] = STATE(670), + [sym_double_quoted_string] = STATE(670), + [sym_heredoc] = STATE(670), + [sym_regex] = STATE(665), + [sym_array] = STATE(665), + [sym_hash] = STATE(665), + [sym_default] = STATE(665), + [sym_undef] = STATE(665), + [sym__boolean] = STATE(665), [sym_comment] = STATE(470), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(127), + [anon_sym_if] = ACTIONS(131), + [anon_sym_unless] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_define] = ACTIONS(137), + [anon_sym_plan] = ACTIONS(139), + [anon_sym_apply] = ACTIONS(141), + [anon_sym_class] = ACTIONS(1099), + [anon_sym_node] = ACTIONS(145), + [anon_sym_function] = ACTIONS(480), + [anon_sym_type] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(151), + [anon_sym_private] = ACTIONS(153), + [anon_sym_attr] = ACTIONS(153), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(161), + [anon_sym_default] = ACTIONS(165), + [anon_sym_undef] = ACTIONS(167), + [sym_type] = ACTIONS(169), + [sym_name] = ACTIONS(171), + [sym_number] = ACTIONS(173), + [sym_true] = ACTIONS(175), + [sym_false] = ACTIONS(175), }, [471] = { - [sym__expression] = STATE(258), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(904), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(471), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [472] = { - [sym__expression] = STATE(257), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), - [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym__expression] = STATE(911), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(472), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [473] = { - [sym__expression] = STATE(887), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(926), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(473), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [474] = { - [sym__expression] = STATE(897), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(863), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(474), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [475] = { - [sym__expression] = STATE(892), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(973), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(475), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [476] = { - [sym__expression] = STATE(894), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(122), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(476), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DASH] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_SLASH] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_unless] = ACTIONS(25), + [anon_sym_case] = ACTIONS(27), + [anon_sym_define] = ACTIONS(29), + [anon_sym_plan] = ACTIONS(31), + [anon_sym_apply] = ACTIONS(33), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_node] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), }, [477] = { - [sym__expression] = STATE(867), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(271), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(477), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [478] = { - [sym__expression] = STATE(919), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(881), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(478), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [479] = { - [sym__expression] = STATE(847), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(882), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(479), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [480] = { - [sym__expression] = STATE(917), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(969), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(480), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [481] = { - [sym__expression] = STATE(915), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(1005), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(481), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [482] = { - [sym__expression] = STATE(914), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(883), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(482), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [483] = { - [sym__expression] = STATE(858), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(925), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(483), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [484] = { - [sym__expression] = STATE(902), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(884), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(484), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [485] = { - [sym__expression] = STATE(898), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(885), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(485), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [486] = { - [sym__expression] = STATE(891), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(910), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(486), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [487] = { - [sym__expression] = STATE(909), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(886), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), [sym_comment] = STATE(487), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), }, [488] = { - [sym__expression] = STATE(890), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(966), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(488), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [489] = { - [sym__expression] = STATE(888), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(257), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(489), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [490] = { - [sym__expression] = STATE(865), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(262), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(490), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [491] = { - [sym__expression] = STATE(967), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(263), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(491), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [492] = { - [sym__expression] = STATE(965), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(265), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(492), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [493] = { - [sym__expression] = STATE(964), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(272), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(493), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [494] = { - [sym__expression] = STATE(908), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(273), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(494), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [495] = { - [sym__expression] = STATE(961), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(275), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(495), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [496] = { - [sym__expression] = STATE(931), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(266), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(496), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [497] = { - [sym__expression] = STATE(959), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(255), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(497), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [498] = { - [sym__expression] = STATE(252), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), + [sym__expression] = STATE(251), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(498), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [499] = { - [sym__expression] = STATE(251), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), + [sym__expression] = STATE(274), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(499), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [500] = { - [sym__expression] = STATE(266), - [sym_unary] = STATE(315), - [sym_binary] = STATE(315), - [sym__bracketed_expression] = STATE(314), - [sym__primary_expression] = STATE(315), - [sym_function_call] = STATE(315), - [sym_call_method_with_lambda] = STATE(317), + [sym__expression] = STATE(267), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), [sym_call_method] = STATE(246), - [sym_named_access] = STATE(277), - [sym_if] = STATE(317), - [sym_unless] = STATE(317), - [sym_case] = STATE(317), - [sym_resource_collector] = STATE(317), - [sym_define_definition] = STATE(317), - [sym_plan_definition] = STATE(317), - [sym_apply_expression] = STATE(317), - [sym_class_definition] = STATE(317), - [sym_node_definition] = STATE(317), - [sym_function_definition] = STATE(317), - [sym_type_alias] = STATE(317), - [sym__type_alias_lhs] = STATE(1560), - [sym_type_definition] = STATE(317), - [sym_variable] = STATE(317), - [sym_reserved_word] = STATE(317), - [sym__quotedtext] = STATE(317), - [sym_string] = STATE(352), - [sym_heredoc] = STATE(352), - [sym_regex] = STATE(317), - [sym_array] = STATE(317), - [sym_hash] = STATE(317), - [sym_default] = STATE(317), - [sym_undef] = STATE(317), - [sym__boolean] = STATE(317), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(500), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(917), - [anon_sym_if] = ACTIONS(919), - [anon_sym_unless] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_define] = ACTIONS(925), - [anon_sym_plan] = ACTIONS(927), - [anon_sym_apply] = ACTIONS(929), - [anon_sym_class] = ACTIONS(931), - [anon_sym_node] = ACTIONS(933), - [anon_sym_function] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(939), - [anon_sym_private] = ACTIONS(941), - [anon_sym_attr] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_AT_LPAREN] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(949), - [anon_sym_default] = ACTIONS(951), - [anon_sym_undef] = ACTIONS(953), - [sym_type] = ACTIONS(955), - [sym_name] = ACTIONS(957), - [sym_number] = ACTIONS(959), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [501] = { - [sym__expression] = STATE(134), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(260), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(501), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [502] = { - [sym__expression] = STATE(133), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(253), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(502), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [503] = { - [sym__expression] = STATE(132), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(264), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(503), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [504] = { - [sym__expression] = STATE(907), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(959), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(504), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [505] = { - [sym__expression] = STATE(740), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(958), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(505), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [506] = { - [sym__expression] = STATE(922), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(258), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(506), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [507] = { - [sym__expression] = STATE(743), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(259), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(507), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [508] = { - [sym__expression] = STATE(744), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(957), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(508), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [509] = { - [sym__expression] = STATE(131), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), + [sym__expression] = STATE(977), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(509), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [510] = { + [sym__expression] = STATE(123), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(510), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -46123,7 +46527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -46143,2989 +46547,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [510] = { - [sym__expression] = STATE(937), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(510), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, [511] = { - [sym__expression] = STATE(990), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(269), + [sym_unary] = STATE(359), + [sym_binary] = STATE(359), + [sym__bracketed_expression] = STATE(353), + [sym__primary_expression] = STATE(359), + [sym_function_call] = STATE(359), + [sym_call_method_with_lambda] = STATE(363), + [sym_call_method] = STATE(246), + [sym_named_access] = STATE(278), + [sym_if] = STATE(363), + [sym_unless] = STATE(363), + [sym_case] = STATE(363), + [sym_resource_collector] = STATE(363), + [sym_define_definition] = STATE(363), + [sym_plan_definition] = STATE(363), + [sym_apply_expression] = STATE(363), + [sym_class_definition] = STATE(363), + [sym_node_definition] = STATE(363), + [sym_function_definition] = STATE(363), + [sym_type_alias] = STATE(363), + [sym__type_alias_lhs] = STATE(1574), + [sym_type_definition] = STATE(363), + [sym_variable] = STATE(363), + [sym_reserved_word] = STATE(363), + [sym__quotedtext] = STATE(363), + [sym_single_quoted_string] = STATE(318), + [sym_double_quoted_string] = STATE(318), + [sym_heredoc] = STATE(318), + [sym_regex] = STATE(363), + [sym_array] = STATE(363), + [sym_hash] = STATE(363), + [sym_default] = STATE(363), + [sym_undef] = STATE(363), + [sym__boolean] = STATE(363), [sym_comment] = STATE(511), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_if] = ACTIONS(975), + [anon_sym_unless] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_define] = ACTIONS(981), + [anon_sym_plan] = ACTIONS(983), + [anon_sym_apply] = ACTIONS(985), + [anon_sym_class] = ACTIONS(987), + [anon_sym_node] = ACTIONS(989), + [anon_sym_function] = ACTIONS(991), + [anon_sym_type] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_private] = ACTIONS(997), + [anon_sym_attr] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_AT_LPAREN] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_undef] = ACTIONS(1009), + [sym_type] = ACTIONS(1011), + [sym_name] = ACTIONS(1013), + [sym_number] = ACTIONS(1015), + [sym_true] = ACTIONS(1017), + [sym_false] = ACTIONS(1017), }, [512] = { - [sym__expression] = STATE(996), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), + [sym__expression] = STATE(124), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), [sym_comment] = STATE(512), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [513] = { - [sym__expression] = STATE(993), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(513), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [514] = { - [sym__expression] = STATE(991), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(514), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [515] = { - [sym__expression] = STATE(994), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(515), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [516] = { - [sym__expression] = STATE(989), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(516), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [517] = { - [sym__expression] = STATE(988), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(517), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [518] = { - [sym__expression] = STATE(987), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(518), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [519] = { - [sym__expression] = STATE(986), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(519), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [520] = { - [sym__expression] = STATE(985), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(520), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [521] = { - [sym__expression] = STATE(938), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(521), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [522] = { - [sym__expression] = STATE(983), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(522), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [523] = { - [sym__expression] = STATE(982), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(523), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [524] = { - [sym__expression] = STATE(980), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(524), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [525] = { - [sym__expression] = STATE(979), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(525), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [526] = { - [sym__expression] = STATE(978), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(526), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [527] = { - [sym__expression] = STATE(977), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(527), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [528] = { - [sym__expression] = STATE(921), - [sym_unary] = STATE(1132), - [sym_binary] = STATE(1132), - [sym__bracketed_expression] = STATE(1117), - [sym__primary_expression] = STATE(1132), - [sym_function_call] = STATE(1132), - [sym_call_method_with_lambda] = STATE(1149), - [sym_call_method] = STATE(918), - [sym_named_access] = STATE(999), - [sym_if] = STATE(1149), - [sym_unless] = STATE(1149), - [sym_case] = STATE(1149), - [sym_resource_collector] = STATE(1149), - [sym_define_definition] = STATE(1149), - [sym_plan_definition] = STATE(1149), - [sym_apply_expression] = STATE(1149), - [sym_class_definition] = STATE(1149), - [sym_node_definition] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_type_alias] = STATE(1149), - [sym__type_alias_lhs] = STATE(1582), - [sym_type_definition] = STATE(1149), - [sym_variable] = STATE(1149), - [sym_reserved_word] = STATE(1149), - [sym__quotedtext] = STATE(1149), - [sym_string] = STATE(1090), - [sym_heredoc] = STATE(1090), - [sym_regex] = STATE(1149), - [sym_array] = STATE(1149), - [sym_hash] = STATE(1149), - [sym_default] = STATE(1149), - [sym_undef] = STATE(1149), - [sym__boolean] = STATE(1149), - [sym_comment] = STATE(528), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_if] = ACTIONS(979), - [anon_sym_unless] = ACTIONS(981), - [anon_sym_case] = ACTIONS(983), - [anon_sym_define] = ACTIONS(987), - [anon_sym_plan] = ACTIONS(989), - [anon_sym_apply] = ACTIONS(991), - [anon_sym_class] = ACTIONS(993), - [anon_sym_node] = ACTIONS(995), - [anon_sym_function] = ACTIONS(997), - [anon_sym_type] = ACTIONS(999), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1003), - [anon_sym_attr] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1007), - [anon_sym_AT_LPAREN] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_undef] = ACTIONS(1015), - [sym_type] = ACTIONS(1017), - [sym_name] = ACTIONS(1019), - [sym_number] = ACTIONS(1021), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - }, - [529] = { - [sym__expression] = STATE(920), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(529), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [530] = { - [sym__expression] = STATE(976), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(530), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [531] = { - [sym__expression] = STATE(971), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(531), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [532] = { - [sym__expression] = STATE(924), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(532), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [533] = { - [sym__expression] = STATE(896), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(533), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [534] = { - [sym__expression] = STATE(885), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(534), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [535] = { - [sym__expression] = STATE(884), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(535), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [536] = { - [sym__expression] = STATE(883), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(536), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [537] = { - [sym__expression] = STATE(882), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(537), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [538] = { - [sym__expression] = STATE(881), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(538), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [539] = { - [sym__expression] = STATE(880), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(539), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [540] = { - [sym__expression] = STATE(879), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(540), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [541] = { - [sym__expression] = STATE(878), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(541), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [542] = { - [sym__expression] = STATE(877), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(542), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [543] = { - [sym__expression] = STATE(876), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(543), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [544] = { - [sym__expression] = STATE(875), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(544), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [545] = { - [sym__expression] = STATE(874), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), - [sym_comment] = STATE(545), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), - }, - [546] = { - [sym__expression] = STATE(736), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(546), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [547] = { - [sym__expression] = STATE(756), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(547), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [548] = { - [sym__expression] = STATE(755), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(548), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [549] = { - [sym__expression] = STATE(754), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(549), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [550] = { - [sym__expression] = STATE(753), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(550), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [551] = { - [sym__expression] = STATE(752), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(551), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [552] = { - [sym__expression] = STATE(751), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(552), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [553] = { - [sym__expression] = STATE(750), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(553), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), - }, - [554] = { - [sym__expression] = STATE(130), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(554), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49138,7 +46663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -49158,108 +46683,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [555] = { - [sym__expression] = STATE(138), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(555), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_BANG] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_SLASH] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_unless] = ACTIONS(25), - [anon_sym_case] = ACTIONS(27), - [anon_sym_define] = ACTIONS(29), - [anon_sym_plan] = ACTIONS(31), - [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_node] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), + [513] = { + [sym__expression] = STATE(967), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(513), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [556] = { - [sym__expression] = STATE(140), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(556), + [514] = { + [sym__expression] = STATE(956), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(514), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [515] = { + [sym__expression] = STATE(126), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(515), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49272,262 +46867,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), - [anon_sym_type] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_private] = ACTIONS(45), - [anon_sym_attr] = ACTIONS(45), - [anon_sym_SQUOTE] = ACTIONS(47), - [anon_sym_DQUOTE] = ACTIONS(49), - [anon_sym_AT_LPAREN] = ACTIONS(51), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_default] = ACTIONS(55), - [anon_sym_undef] = ACTIONS(57), - [sym_type] = ACTIONS(61), - [sym_name] = ACTIONS(63), - [sym_number] = ACTIONS(65), - [sym_true] = ACTIONS(67), - [sym_false] = ACTIONS(67), - }, - [557] = { - [sym__expression] = STATE(625), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(557), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - }, - [558] = { - [sym__expression] = STATE(624), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(558), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), - }, - [559] = { - [sym__expression] = STATE(623), - [sym_unary] = STATE(685), - [sym_binary] = STATE(685), - [sym__bracketed_expression] = STATE(723), - [sym__primary_expression] = STATE(685), - [sym_function_call] = STATE(685), - [sym_call_method_with_lambda] = STATE(668), - [sym_call_method] = STATE(615), - [sym_named_access] = STATE(649), - [sym_if] = STATE(668), - [sym_unless] = STATE(668), - [sym_case] = STATE(668), - [sym_resource_collector] = STATE(668), - [sym_define_definition] = STATE(668), - [sym_plan_definition] = STATE(668), - [sym_apply_expression] = STATE(668), - [sym_class_definition] = STATE(668), - [sym_node_definition] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_type_alias] = STATE(668), - [sym__type_alias_lhs] = STATE(1581), - [sym_type_definition] = STATE(668), - [sym_variable] = STATE(668), - [sym_reserved_word] = STATE(668), - [sym__quotedtext] = STATE(668), - [sym_string] = STATE(720), - [sym_heredoc] = STATE(720), - [sym_regex] = STATE(668), - [sym_array] = STATE(668), - [sym_hash] = STATE(668), - [sym_default] = STATE(668), - [sym_undef] = STATE(668), - [sym__boolean] = STATE(668), - [sym_comment] = STATE(559), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_unless] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_define] = ACTIONS(137), - [anon_sym_plan] = ACTIONS(139), - [anon_sym_apply] = ACTIONS(141), - [anon_sym_class] = ACTIONS(1035), - [anon_sym_node] = ACTIONS(145), - [anon_sym_function] = ACTIONS(708), - [anon_sym_type] = ACTIONS(710), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_private] = ACTIONS(153), - [anon_sym_attr] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_AT_LPAREN] = ACTIONS(159), + [anon_sym_type] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_private] = ACTIONS(45), + [anon_sym_attr] = ACTIONS(45), + [anon_sym_SQUOTE] = ACTIONS(47), + [anon_sym_DQUOTE] = ACTIONS(49), + [anon_sym_AT_LPAREN] = ACTIONS(51), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(161), - [anon_sym_default] = ACTIONS(165), - [anon_sym_undef] = ACTIONS(167), - [sym_type] = ACTIONS(169), - [sym_name] = ACTIONS(171), - [sym_number] = ACTIONS(173), - [sym_true] = ACTIONS(175), - [sym_false] = ACTIONS(175), + [anon_sym_LBRACK2] = ACTIONS(53), + [anon_sym_default] = ACTIONS(55), + [anon_sym_undef] = ACTIONS(57), + [sym_type] = ACTIONS(61), + [sym_name] = ACTIONS(63), + [sym_number] = ACTIONS(65), + [sym_true] = ACTIONS(67), + [sym_false] = ACTIONS(67), }, - [560] = { - [sym__expression] = STATE(121), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(560), + [516] = { + [sym__expression] = STATE(120), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(516), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49540,7 +46935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -49560,242 +46955,1130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [561] = { - [sym__expression] = STATE(749), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(561), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [517] = { + [sym__expression] = STATE(862), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(517), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [562] = { - [sym__expression] = STATE(748), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(562), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [518] = { + [sym__expression] = STATE(976), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(518), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [563] = { - [sym__expression] = STATE(925), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(899), - [sym_named_access] = STATE(1059), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), - [sym_comment] = STATE(563), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(907), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [519] = { + [sym__expression] = STATE(955), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(519), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, - [564] = { - [sym__expression] = STATE(122), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(564), + [520] = { + [sym__expression] = STATE(968), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(520), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [521] = { + [sym__expression] = STATE(954), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(521), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [522] = { + [sym__expression] = STATE(887), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(522), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [523] = { + [sym__expression] = STATE(888), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(523), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [524] = { + [sym__expression] = STATE(953), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(524), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [525] = { + [sym__expression] = STATE(889), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(525), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [526] = { + [sym__expression] = STATE(952), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(526), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [527] = { + [sym__expression] = STATE(975), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(527), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [528] = { + [sym__expression] = STATE(877), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(528), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [529] = { + [sym__expression] = STATE(951), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(529), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [530] = { + [sym__expression] = STATE(865), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(530), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [531] = { + [sym__expression] = STATE(890), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(531), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [532] = { + [sym__expression] = STATE(950), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(532), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [533] = { + [sym__expression] = STATE(121), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(533), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49808,7 +48091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -49828,41 +48111,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [565] = { - [sym__expression] = STATE(115), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(565), + [534] = { + [sym__expression] = STATE(909), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(534), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [535] = { + [sym__expression] = STATE(891), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(535), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [536] = { + [sym__expression] = STATE(892), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(536), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [537] = { + [sym__expression] = STATE(907), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(537), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [538] = { + [sym__expression] = STATE(949), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(538), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [539] = { + [sym__expression] = STATE(948), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(539), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [540] = { + [sym__expression] = STATE(947), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(540), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [541] = { + [sym__expression] = STATE(922), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(541), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [542] = { + [sym__expression] = STATE(946), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(542), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [543] = { + [sym__expression] = STATE(945), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(903), + [sym_named_access] = STATE(1087), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(543), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(1027), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [544] = { + [sym__expression] = STATE(859), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(544), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [545] = { + [sym__expression] = STATE(141), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(545), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49875,7 +48907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -49895,41 +48927,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [566] = { - [sym__expression] = STATE(119), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(566), + [546] = { + [sym__expression] = STATE(856), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(546), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [547] = { + [sym__expression] = STATE(893), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(547), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [548] = { + [sym__expression] = STATE(919), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(548), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [549] = { + [sym__expression] = STATE(979), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), + [sym_comment] = STATE(549), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + }, + [550] = { + [sym__expression] = STATE(923), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(550), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [551] = { + [sym__expression] = STATE(924), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(551), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [552] = { + [sym__expression] = STATE(894), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(552), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [553] = { + [sym__expression] = STATE(980), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(553), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [554] = { + [sym__expression] = STATE(921), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(554), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [555] = { + [sym__expression] = STATE(748), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(555), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [556] = { + [sym__expression] = STATE(749), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(556), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [557] = { + [sym__expression] = STATE(127), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(557), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -49942,7 +49723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -49962,41 +49743,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, - [567] = { - [sym__expression] = STATE(126), - [sym_unary] = STATE(187), - [sym_binary] = STATE(187), - [sym__bracketed_expression] = STATE(152), - [sym__primary_expression] = STATE(187), - [sym_function_call] = STATE(187), - [sym_call_method_with_lambda] = STATE(184), - [sym_call_method] = STATE(111), - [sym_named_access] = STATE(150), - [sym_if] = STATE(184), - [sym_unless] = STATE(184), - [sym_case] = STATE(184), - [sym_resource_collector] = STATE(184), - [sym_define_definition] = STATE(184), - [sym_plan_definition] = STATE(184), - [sym_apply_expression] = STATE(184), - [sym_class_definition] = STATE(184), - [sym_node_definition] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_type_alias] = STATE(184), - [sym__type_alias_lhs] = STATE(1593), - [sym_type_definition] = STATE(184), - [sym_variable] = STATE(184), - [sym_reserved_word] = STATE(184), - [sym__quotedtext] = STATE(184), - [sym_string] = STATE(192), - [sym_heredoc] = STATE(192), - [sym_regex] = STATE(184), - [sym_array] = STATE(184), - [sym_hash] = STATE(184), - [sym_default] = STATE(184), - [sym_undef] = STATE(184), - [sym__boolean] = STATE(184), - [sym_comment] = STATE(567), + [558] = { + [sym__expression] = STATE(751), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(558), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [559] = { + [sym__expression] = STATE(858), + [sym_unary] = STATE(1044), + [sym_binary] = STATE(1044), + [sym__bracketed_expression] = STATE(1046), + [sym__primary_expression] = STATE(1044), + [sym_function_call] = STATE(1044), + [sym_call_method_with_lambda] = STATE(1034), + [sym_call_method] = STATE(912), + [sym_named_access] = STATE(779), + [sym_if] = STATE(1034), + [sym_unless] = STATE(1034), + [sym_case] = STATE(1034), + [sym_resource_collector] = STATE(1034), + [sym_define_definition] = STATE(1034), + [sym_plan_definition] = STATE(1034), + [sym_apply_expression] = STATE(1034), + [sym_class_definition] = STATE(1034), + [sym_node_definition] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_type_alias] = STATE(1034), + [sym__type_alias_lhs] = STATE(1642), + [sym_type_definition] = STATE(1034), + [sym_variable] = STATE(1034), + [sym_reserved_word] = STATE(1034), + [sym__quotedtext] = STATE(1034), + [sym_single_quoted_string] = STATE(1079), + [sym_double_quoted_string] = STATE(1079), + [sym_heredoc] = STATE(1079), + [sym_regex] = STATE(1034), + [sym_array] = STATE(1034), + [sym_hash] = STATE(1034), + [sym_default] = STATE(1034), + [sym_undef] = STATE(1034), + [sym__boolean] = STATE(1034), + [sym_comment] = STATE(559), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_unless] = ACTIONS(1055), + [anon_sym_case] = ACTIONS(1057), + [anon_sym_define] = ACTIONS(1059), + [anon_sym_plan] = ACTIONS(1061), + [anon_sym_apply] = ACTIONS(1063), + [anon_sym_class] = ACTIONS(1065), + [anon_sym_node] = ACTIONS(1067), + [anon_sym_function] = ACTIONS(1069), + [anon_sym_type] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_private] = ACTIONS(1075), + [anon_sym_attr] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_AT_LPAREN] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1085), + [anon_sym_undef] = ACTIONS(1087), + [sym_type] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_true] = ACTIONS(1095), + [sym_false] = ACTIONS(1095), + }, + [560] = { + [sym__expression] = STATE(133), + [sym_unary] = STATE(177), + [sym_binary] = STATE(177), + [sym__bracketed_expression] = STATE(174), + [sym__primary_expression] = STATE(177), + [sym_function_call] = STATE(177), + [sym_call_method_with_lambda] = STATE(153), + [sym_call_method] = STATE(110), + [sym_named_access] = STATE(143), + [sym_if] = STATE(153), + [sym_unless] = STATE(153), + [sym_case] = STATE(153), + [sym_resource_collector] = STATE(153), + [sym_define_definition] = STATE(153), + [sym_plan_definition] = STATE(153), + [sym_apply_expression] = STATE(153), + [sym_class_definition] = STATE(153), + [sym_node_definition] = STATE(153), + [sym_function_definition] = STATE(153), + [sym_type_alias] = STATE(153), + [sym__type_alias_lhs] = STATE(1622), + [sym_type_definition] = STATE(153), + [sym_variable] = STATE(153), + [sym_reserved_word] = STATE(153), + [sym__quotedtext] = STATE(153), + [sym_single_quoted_string] = STATE(162), + [sym_double_quoted_string] = STATE(162), + [sym_heredoc] = STATE(162), + [sym_regex] = STATE(153), + [sym_array] = STATE(153), + [sym_hash] = STATE(153), + [sym_default] = STATE(153), + [sym_undef] = STATE(153), + [sym__boolean] = STATE(153), + [sym_comment] = STATE(560), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(9), [anon_sym_BANG] = ACTIONS(15), @@ -50009,7 +49927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_define] = ACTIONS(29), [anon_sym_plan] = ACTIONS(31), [anon_sym_apply] = ACTIONS(33), - [anon_sym_class] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1097), [anon_sym_node] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_type] = ACTIONS(41), @@ -50029,1141 +49947,1647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(67), [sym_false] = ACTIONS(67), }, + [561] = { + [sym__expression] = STATE(752), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(561), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [562] = { + [sym__expression] = STATE(763), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(562), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [563] = { + [sym__expression] = STATE(762), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(563), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [564] = { + [sym__expression] = STATE(761), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(564), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [565] = { + [sym__expression] = STATE(753), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(565), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [566] = { + [sym__expression] = STATE(754), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(566), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [567] = { + [sym__expression] = STATE(755), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(567), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, [568] = { - [sym__expression] = STATE(869), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(756), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(568), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [569] = { - [sym__expression] = STATE(870), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(758), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(569), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [570] = { - [sym__expression] = STATE(871), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(759), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(570), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [571] = { - [sym__expression] = STATE(872), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(871), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(571), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [572] = { - [sym__expression] = STATE(873), - [sym_unary] = STATE(1082), - [sym_binary] = STATE(1082), - [sym__bracketed_expression] = STATE(1083), - [sym__primary_expression] = STATE(1082), - [sym_function_call] = STATE(1082), - [sym_call_method_with_lambda] = STATE(1079), - [sym_call_method] = STATE(905), - [sym_named_access] = STATE(803), - [sym_if] = STATE(1079), - [sym_unless] = STATE(1079), - [sym_case] = STATE(1079), - [sym_resource_collector] = STATE(1079), - [sym_define_definition] = STATE(1079), - [sym_plan_definition] = STATE(1079), - [sym_apply_expression] = STATE(1079), - [sym_class_definition] = STATE(1079), - [sym_node_definition] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_type_alias] = STATE(1079), - [sym__type_alias_lhs] = STATE(1628), - [sym_type_definition] = STATE(1079), - [sym_variable] = STATE(1079), - [sym_reserved_word] = STATE(1079), - [sym__quotedtext] = STATE(1079), - [sym_string] = STATE(1067), - [sym_heredoc] = STATE(1067), - [sym_regex] = STATE(1079), - [sym_array] = STATE(1079), - [sym_hash] = STATE(1079), - [sym_default] = STATE(1079), - [sym_undef] = STATE(1079), - [sym__boolean] = STATE(1079), + [sym__expression] = STATE(905), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(572), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_define] = ACTIONS(1055), - [anon_sym_plan] = ACTIONS(1057), - [anon_sym_apply] = ACTIONS(1059), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_node] = ACTIONS(1063), - [anon_sym_function] = ACTIONS(1065), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_attr] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_AT_LPAREN] = ACTIONS(1077), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(1079), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_undef] = ACTIONS(1083), - [sym_type] = ACTIONS(1085), - [sym_name] = ACTIONS(1087), - [sym_number] = ACTIONS(1089), - [sym_true] = ACTIONS(1091), - [sym_false] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [573] = { - [sym__expression] = STATE(741), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(913), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(573), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [574] = { - [sym__expression] = STATE(738), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(929), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(574), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [575] = { - [sym__expression] = STATE(739), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(928), + [sym_unary] = STATE(1140), + [sym_binary] = STATE(1140), + [sym__bracketed_expression] = STATE(1112), + [sym__primary_expression] = STATE(1140), + [sym_function_call] = STATE(1140), + [sym_call_method_with_lambda] = STATE(1124), + [sym_call_method] = STATE(906), + [sym_named_access] = STATE(1048), + [sym_if] = STATE(1124), + [sym_unless] = STATE(1124), + [sym_case] = STATE(1124), + [sym_resource_collector] = STATE(1124), + [sym_define_definition] = STATE(1124), + [sym_plan_definition] = STATE(1124), + [sym_apply_expression] = STATE(1124), + [sym_class_definition] = STATE(1124), + [sym_node_definition] = STATE(1124), + [sym_function_definition] = STATE(1124), + [sym_type_alias] = STATE(1124), + [sym__type_alias_lhs] = STATE(1596), + [sym_type_definition] = STATE(1124), + [sym_variable] = STATE(1124), + [sym_reserved_word] = STATE(1124), + [sym__quotedtext] = STATE(1124), + [sym_single_quoted_string] = STATE(1128), + [sym_double_quoted_string] = STATE(1128), + [sym_heredoc] = STATE(1128), + [sym_regex] = STATE(1124), + [sym_array] = STATE(1124), + [sym_hash] = STATE(1124), + [sym_default] = STATE(1124), + [sym_undef] = STATE(1124), + [sym__boolean] = STATE(1124), [sym_comment] = STATE(575), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_if] = ACTIONS(919), + [anon_sym_unless] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_define] = ACTIONS(927), + [anon_sym_plan] = ACTIONS(929), + [anon_sym_apply] = ACTIONS(931), + [anon_sym_class] = ACTIONS(933), + [anon_sym_node] = ACTIONS(935), + [anon_sym_function] = ACTIONS(937), + [anon_sym_type] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_private] = ACTIONS(943), + [anon_sym_attr] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_AT_LPAREN] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(951), + [anon_sym_default] = ACTIONS(953), + [anon_sym_undef] = ACTIONS(955), + [sym_type] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [sym_number] = ACTIONS(961), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), }, [576] = { - [sym__expression] = STATE(737), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(915), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(576), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [577] = { - [sym__expression] = STATE(742), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(917), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(577), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [578] = { [sym__expression] = STATE(745), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(578), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [579] = { - [sym__expression] = STATE(746), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(744), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(579), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, [580] = { - [sym__expression] = STATE(747), - [sym_unary] = STATE(826), - [sym_binary] = STATE(826), - [sym__bracketed_expression] = STATE(828), - [sym__primary_expression] = STATE(826), - [sym_function_call] = STATE(826), - [sym_call_method_with_lambda] = STATE(823), - [sym_call_method] = STATE(732), - [sym_named_access] = STATE(803), - [sym_if] = STATE(823), - [sym_unless] = STATE(823), - [sym_case] = STATE(823), - [sym_resource_collector] = STATE(823), - [sym_define_definition] = STATE(823), - [sym_plan_definition] = STATE(823), - [sym_apply_expression] = STATE(823), - [sym_class_definition] = STATE(823), - [sym_node_definition] = STATE(823), - [sym_function_definition] = STATE(823), - [sym_type_alias] = STATE(823), - [sym__type_alias_lhs] = STATE(1566), - [sym_type_definition] = STATE(823), - [sym_variable] = STATE(823), - [sym_reserved_word] = STATE(823), - [sym__quotedtext] = STATE(823), - [sym_string] = STATE(796), - [sym_heredoc] = STATE(796), - [sym_regex] = STATE(823), - [sym_array] = STATE(823), - [sym_hash] = STATE(823), - [sym_default] = STATE(823), - [sym_undef] = STATE(823), - [sym__boolean] = STATE(823), + [sym__expression] = STATE(746), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), [sym_comment] = STATE(580), - [anon_sym_LBRACE] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_if] = ACTIONS(771), - [anon_sym_unless] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_define] = ACTIONS(777), - [anon_sym_plan] = ACTIONS(779), - [anon_sym_apply] = ACTIONS(781), - [anon_sym_class] = ACTIONS(861), - [anon_sym_node] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_type] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_private] = ACTIONS(791), - [anon_sym_attr] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(269), - [anon_sym_DQUOTE] = ACTIONS(271), - [anon_sym_AT_LPAREN] = ACTIONS(273), - [anon_sym_POUND] = ACTIONS(3), - [anon_sym_LBRACK2] = ACTIONS(275), - [anon_sym_default] = ACTIONS(793), - [anon_sym_undef] = ACTIONS(795), - [sym_type] = ACTIONS(281), - [sym_name] = ACTIONS(797), - [sym_number] = ACTIONS(285), - [sym_true] = ACTIONS(287), - [sym_false] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [581] = { + [sym__expression] = STATE(760), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(581), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [582] = { + [sym__expression] = STATE(742), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(582), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [583] = { + [sym__expression] = STATE(743), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(583), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + }, + [584] = { + [sym__expression] = STATE(757), + [sym_unary] = STATE(781), + [sym_binary] = STATE(781), + [sym__bracketed_expression] = STATE(780), + [sym__primary_expression] = STATE(781), + [sym_function_call] = STATE(781), + [sym_call_method_with_lambda] = STATE(784), + [sym_call_method] = STATE(736), + [sym_named_access] = STATE(779), + [sym_if] = STATE(784), + [sym_unless] = STATE(784), + [sym_case] = STATE(784), + [sym_resource_collector] = STATE(784), + [sym_define_definition] = STATE(784), + [sym_plan_definition] = STATE(784), + [sym_apply_expression] = STATE(784), + [sym_class_definition] = STATE(784), + [sym_node_definition] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_type_alias] = STATE(784), + [sym__type_alias_lhs] = STATE(1580), + [sym_type_definition] = STATE(784), + [sym_variable] = STATE(784), + [sym_reserved_word] = STATE(784), + [sym__quotedtext] = STATE(784), + [sym_single_quoted_string] = STATE(778), + [sym_double_quoted_string] = STATE(778), + [sym_heredoc] = STATE(778), + [sym_regex] = STATE(784), + [sym_array] = STATE(784), + [sym_hash] = STATE(784), + [sym_default] = STATE(784), + [sym_undef] = STATE(784), + [sym__boolean] = STATE(784), + [sym_comment] = STATE(584), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(237), + [anon_sym_DASH] = ACTIONS(239), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(245), + [anon_sym_if] = ACTIONS(776), + [anon_sym_unless] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_define] = ACTIONS(782), + [anon_sym_plan] = ACTIONS(784), + [anon_sym_apply] = ACTIONS(786), + [anon_sym_class] = ACTIONS(865), + [anon_sym_node] = ACTIONS(790), + [anon_sym_function] = ACTIONS(792), + [anon_sym_type] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(267), + [anon_sym_private] = ACTIONS(796), + [anon_sym_attr] = ACTIONS(796), + [anon_sym_SQUOTE] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_AT_LPAREN] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK2] = ACTIONS(277), + [anon_sym_default] = ACTIONS(798), + [anon_sym_undef] = ACTIONS(800), + [sym_type] = ACTIONS(283), + [sym_name] = ACTIONS(802), + [sym_number] = ACTIONS(287), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1095), 1, - anon_sym_LBRACE, - STATE(581), 1, - sym_comment, - ACTIONS(1093), 25, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, - anon_sym_AT_AT, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1097), 30, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - anon_sym_include, - anon_sym_require, - anon_sym_contain, - anon_sym_tag, - anon_sym_debug, - anon_sym_info, - anon_sym_notice, - anon_sym_warning, - anon_sym_err, - anon_sym_fail, - sym_name, - sym_true, - sym_false, - [69] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(582), 1, - sym_comment, - ACTIONS(1099), 26, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, - anon_sym_AT_AT, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1101), 30, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - anon_sym_include, - anon_sym_require, - anon_sym_contain, - anon_sym_tag, - anon_sym_debug, - anon_sym_info, - anon_sym_notice, - anon_sym_warning, - anon_sym_err, - anon_sym_fail, - sym_name, - sym_true, - sym_false, - [136] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1105), 1, - anon_sym_LBRACE, - STATE(583), 1, - sym_comment, - ACTIONS(1103), 25, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, - anon_sym_AT_AT, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1108), 30, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - anon_sym_include, - anon_sym_require, - anon_sym_contain, - anon_sym_tag, - anon_sym_debug, - anon_sym_info, - anon_sym_notice, - anon_sym_warning, - anon_sym_err, - anon_sym_fail, - sym_name, - sym_true, - sym_false, - [205] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1112), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_comment, - ACTIONS(1110), 25, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, - anon_sym_AT_AT, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1115), 30, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - anon_sym_include, - anon_sym_require, - anon_sym_contain, - anon_sym_tag, - anon_sym_debug, - anon_sym_info, - anon_sym_notice, - anon_sym_warning, - anon_sym_err, - anon_sym_fail, - sym_name, - sym_true, - sym_false, - [274] = 4, + [0] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(585), 1, sym_comment, - ACTIONS(1117), 26, + ACTIONS(1101), 26, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51190,7 +51614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1119), 30, + ACTIONS(1103), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51221,16 +51645,15 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [341] = 5, + [67] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1121), 1, - anon_sym_LBRACE, STATE(586), 1, sym_comment, - ACTIONS(1099), 25, + ACTIONS(1105), 26, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -51254,7 +51677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1101), 30, + ACTIONS(1107), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51285,14 +51708,14 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [410] = 5, + [134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1126), 1, + ACTIONS(1111), 1, anon_sym_LBRACE, STATE(587), 1, sym_comment, - ACTIONS(1124), 25, + ACTIONS(1109), 25, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RBRACE, @@ -51318,7 +51741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1129), 30, + ACTIONS(1113), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51349,16 +51772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [479] = 5, + [203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1095), 1, - anon_sym_LBRACE, STATE(588), 1, sym_comment, - ACTIONS(1131), 25, + ACTIONS(1115), 26, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -51382,7 +51804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1133), 30, + ACTIONS(1117), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51413,12 +51835,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [548] = 4, + [270] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(589), 1, sym_comment, - ACTIONS(1135), 26, + ACTIONS(1119), 26, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51445,7 +51867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1137), 30, + ACTIONS(1121), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51476,15 +51898,16 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [615] = 4, + [337] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1111), 1, + anon_sym_LBRACE, STATE(590), 1, sym_comment, - ACTIONS(1139), 26, + ACTIONS(1123), 25, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -51508,7 +51931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1141), 30, + ACTIONS(1125), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51539,12 +51962,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [682] = 4, + [406] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(591), 1, sym_comment, - ACTIONS(1143), 26, + ACTIONS(1127), 26, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51571,7 +51994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1145), 30, + ACTIONS(1129), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51602,15 +52025,16 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [749] = 4, + [473] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACE, STATE(592), 1, sym_comment, - ACTIONS(1147), 26, + ACTIONS(1131), 25, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -51634,7 +52058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1149), 30, + ACTIONS(1136), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51665,12 +52089,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [816] = 4, + [542] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(593), 1, sym_comment, - ACTIONS(1151), 26, + ACTIONS(1138), 26, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51697,7 +52121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1153), 30, + ACTIONS(1140), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51728,12 +52152,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [883] = 4, + [609] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(594), 1, sym_comment, - ACTIONS(1155), 26, + ACTIONS(1142), 26, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51760,7 +52184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1157), 30, + ACTIONS(1144), 30, anon_sym_EQ, anon_sym_AT, anon_sym_DASH, @@ -51791,15 +52215,144 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [950] = 4, + [676] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1146), 1, + anon_sym_LBRACE, STATE(595), 1, sym_comment, - ACTIONS(1159), 26, + ACTIONS(1138), 25, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_AT_AT, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1140), 30, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + anon_sym_include, + anon_sym_require, + anon_sym_contain, + anon_sym_tag, + anon_sym_debug, + anon_sym_info, + anon_sym_notice, + anon_sym_warning, + anon_sym_err, + anon_sym_fail, + sym_name, + sym_true, + sym_false, + [745] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1151), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_comment, + ACTIONS(1149), 25, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_AT_AT, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1154), 30, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + anon_sym_include, + anon_sym_require, + anon_sym_contain, + anon_sym_tag, + anon_sym_debug, + anon_sym_info, + anon_sym_notice, + anon_sym_warning, + anon_sym_err, + anon_sym_fail, + sym_name, + sym_true, + sym_false, + [814] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1158), 1, anon_sym_LBRACE, + STATE(597), 1, + sym_comment, + ACTIONS(1156), 25, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -51854,25 +52407,151 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, + [883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(598), 1, + sym_comment, + ACTIONS(1163), 26, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_AT_AT, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1165), 30, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + anon_sym_include, + anon_sym_require, + anon_sym_contain, + anon_sym_tag, + anon_sym_debug, + anon_sym_info, + anon_sym_notice, + anon_sym_warning, + anon_sym_err, + anon_sym_fail, + sym_name, + sym_true, + sym_false, + [950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(599), 1, + sym_comment, + ACTIONS(1167), 26, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_AT_AT, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1169), 30, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + anon_sym_include, + anon_sym_require, + anon_sym_contain, + anon_sym_tag, + anon_sym_debug, + anon_sym_info, + anon_sym_notice, + anon_sym_warning, + anon_sym_err, + anon_sym_fail, + sym_name, + sym_true, + sym_false, [1017] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1165), 1, + ACTIONS(1173), 1, anon_sym_EQ, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_PLUS_EQ, - ACTIONS(1169), 1, + ACTIONS(1177), 1, anon_sym_DASH_EQ, - STATE(241), 1, + STATE(243), 1, sym_chaining_arrow, - STATE(596), 1, + STATE(600), 1, sym_comment, - ACTIONS(1171), 4, + ACTIONS(1179), 4, anon_sym_DASH_GT, anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - ACTIONS(1163), 17, + ACTIONS(1171), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51890,7 +52569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1173), 29, + ACTIONS(1181), 29, anon_sym_AT, anon_sym_DASH, anon_sym_if, @@ -51923,9 +52602,9 @@ static const uint16_t ts_small_parse_table[] = { [1092] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(597), 1, + STATE(601), 1, sym_comment, - ACTIONS(1175), 21, + ACTIONS(1183), 21, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -51947,7 +52626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1177), 28, + ACTIONS(1185), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -51979,9 +52658,9 @@ static const uint16_t ts_small_parse_table[] = { [1152] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(598), 1, + STATE(602), 1, sym_comment, - ACTIONS(1175), 21, + ACTIONS(1183), 21, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52003,7 +52682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1177), 28, + ACTIONS(1185), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52035,9 +52714,9 @@ static const uint16_t ts_small_parse_table[] = { [1212] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(599), 1, + STATE(603), 1, sym_comment, - ACTIONS(1175), 21, + ACTIONS(1183), 21, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52059,7 +52738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1177), 28, + ACTIONS(1185), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52091,9 +52770,9 @@ static const uint16_t ts_small_parse_table[] = { [1272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(600), 1, + STATE(604), 1, sym_comment, - ACTIONS(1179), 19, + ACTIONS(1187), 19, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52113,7 +52792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1181), 28, + ACTIONS(1189), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52145,9 +52824,9 @@ static const uint16_t ts_small_parse_table[] = { [1330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(601), 1, + STATE(605), 1, sym_comment, - ACTIONS(1183), 18, + ACTIONS(1191), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52166,7 +52845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1185), 28, + ACTIONS(1193), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52195,18 +52874,17 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1387] = 5, + [1387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1189), 1, - anon_sym_COMMA, - STATE(602), 1, + STATE(606), 1, sym_comment, - ACTIONS(1187), 17, + ACTIONS(1195), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52220,7 +52898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1191), 28, + ACTIONS(1197), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52249,12 +52927,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1446] = 4, + [1444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(603), 1, + STATE(607), 1, sym_comment, - ACTIONS(1193), 18, + ACTIONS(1199), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52273,7 +52951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1195), 28, + ACTIONS(1201), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52302,17 +52980,18 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1503] = 4, + [1501] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(604), 1, + ACTIONS(1205), 1, + anon_sym_COMMA, + STATE(608), 1, sym_comment, - ACTIONS(1197), 18, + ACTIONS(1203), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52326,7 +53005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1199), 28, + ACTIONS(1207), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52355,18 +53034,17 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1560] = 5, + [1560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1189), 1, - anon_sym_COMMA, - STATE(605), 1, + STATE(609), 1, sym_comment, - ACTIONS(1201), 17, + ACTIONS(1209), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52380,7 +53058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1203), 28, + ACTIONS(1211), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52409,17 +53087,18 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1619] = 4, + [1617] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(606), 1, + ACTIONS(1205), 1, + anon_sym_COMMA, + STATE(610), 1, sym_comment, - ACTIONS(1205), 18, + ACTIONS(1213), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52433,7 +53112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1207), 28, + ACTIONS(1215), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52465,9 +53144,9 @@ static const uint16_t ts_small_parse_table[] = { [1676] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(607), 1, + STATE(611), 1, sym_comment, - ACTIONS(1209), 18, + ACTIONS(1217), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, @@ -52486,7 +53165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1211), 28, + ACTIONS(1219), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52515,17 +53194,18 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1733] = 4, + [1733] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(608), 1, + ACTIONS(1205), 1, + anon_sym_COMMA, + STATE(612), 1, sym_comment, - ACTIONS(1213), 18, + ACTIONS(1221), 17, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52539,7 +53219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1215), 28, + ACTIONS(1223), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52568,18 +53248,17 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [1790] = 5, + [1792] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1189), 1, - anon_sym_COMMA, - STATE(609), 1, + STATE(613), 1, sym_comment, - ACTIONS(1217), 17, + ACTIONS(1225), 18, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_AT_AT, anon_sym_BANG, @@ -52593,7 +53272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1219), 28, + ACTIONS(1227), 28, anon_sym_AT, anon_sym_if, anon_sym_unless, @@ -52625,26 +53304,26 @@ static const uint16_t ts_small_parse_table[] = { [1849] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1221), 1, + ACTIONS(1229), 1, anon_sym_elsif, - ACTIONS(1223), 1, + ACTIONS(1231), 1, anon_sym_else, - STATE(610), 1, + STATE(614), 1, sym_comment, - STATE(611), 1, + STATE(615), 1, aux_sym_if_repeat1, - STATE(639), 1, + STATE(646), 1, sym_elsif, - STATE(654), 1, + STATE(656), 1, sym_else, - ACTIONS(291), 6, + ACTIONS(321), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(289), 31, + ACTIONS(319), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -52679,17 +53358,17 @@ static const uint16_t ts_small_parse_table[] = { [1912] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1221), 1, + ACTIONS(1229), 1, anon_sym_elsif, - ACTIONS(1223), 1, + ACTIONS(1231), 1, anon_sym_else, - STATE(611), 1, + STATE(615), 1, sym_comment, - STATE(612), 1, + STATE(616), 1, aux_sym_if_repeat1, - STATE(639), 1, + STATE(646), 1, sym_elsif, - STATE(667), 1, + STATE(717), 1, sym_else, ACTIONS(305), 6, anon_sym_EQ, @@ -52733,21 +53412,21 @@ static const uint16_t ts_small_parse_table[] = { [1975] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1225), 1, + ACTIONS(1233), 1, anon_sym_elsif, - STATE(639), 1, + STATE(646), 1, sym_elsif, - STATE(612), 2, + STATE(616), 2, sym_comment, aux_sym_if_repeat1, - ACTIONS(331), 6, + ACTIONS(357), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(329), 32, + ACTIONS(355), 32, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -52783,22 +53462,22 @@ static const uint16_t ts_small_parse_table[] = { [2031] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, + ACTIONS(374), 1, anon_sym_PIPE, - STATE(613), 1, + STATE(617), 1, sym_comment, - STATE(696), 1, + STATE(678), 1, sym_lambda, - STATE(1261), 1, + STATE(1303), 1, sym__lambda_parameter_list, - ACTIONS(370), 6, + ACTIONS(372), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 31, + ACTIONS(370), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -52833,27 +53512,413 @@ static const uint16_t ts_small_parse_table[] = { [2088] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, + ACTIONS(374), 1, anon_sym_PIPE, - STATE(614), 1, + STATE(618), 1, sym_comment, - STATE(690), 1, + STATE(727), 1, sym_lambda, - STATE(1261), 1, + STATE(1303), 1, + sym__lambda_parameter_list, + ACTIONS(382), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 31, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2145] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(619), 1, + sym_comment, + STATE(726), 1, + sym_lambda, + STATE(1303), 1, sym__lambda_parameter_list, - ACTIONS(364), 6, + ACTIONS(390), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(362), 31, + ACTIONS(388), 31, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2202] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(620), 1, + sym_comment, + STATE(709), 1, + sym_lambda, + STATE(1303), 1, + sym__lambda_parameter_list, + ACTIONS(378), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 31, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2259] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(621), 1, + sym_comment, + STATE(718), 1, + sym_lambda, + STATE(1303), 1, + sym__lambda_parameter_list, + ACTIONS(386), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 31, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2316] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + STATE(622), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 29, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2374] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + STATE(623), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 24, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2442] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, + anon_sym_DASH, + ACTIONS(1252), 1, + anon_sym_PLUS, + ACTIONS(1254), 1, + anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + STATE(624), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 21, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [2522] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, + anon_sym_DASH, + ACTIONS(1252), 1, + anon_sym_PLUS, + ACTIONS(1254), 1, + anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + STATE(625), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 21, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52861,15 +53926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -52880,30 +53936,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2145] = 7, + [2602] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(615), 1, - sym_comment, - STATE(709), 1, - sym_lambda, - STATE(1261), 1, - sym__lambda_parameter_list, - ACTIONS(386), 6, - anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + STATE(626), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 31, + ACTIONS(396), 21, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52911,15 +53987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -52930,30 +53997,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2202] = 7, + [2682] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(616), 1, - sym_comment, - STATE(691), 1, - sym_lambda, - STATE(1261), 1, - sym__lambda_parameter_list, - ACTIONS(382), 6, - anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + STATE(627), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 31, + ACTIONS(396), 21, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -52961,15 +54048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -52980,30 +54058,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2259] = 7, + [2762] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(617), 1, - sym_comment, - STATE(688), 1, - sym_lambda, - STATE(1261), 1, - sym__lambda_parameter_list, - ACTIONS(374), 6, - anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + STATE(628), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 31, + ACTIONS(396), 23, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53011,13 +54105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -53030,46 +54117,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2316] = 19, + [2838] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, ACTIONS(1236), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1238), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1240), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1242), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1244), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1246), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1248), 1, - anon_sym_GT_GT, + anon_sym_PERCENT, ACTIONS(1250), 1, - anon_sym_BANG_EQ, + anon_sym_DASH, ACTIONS(1252), 1, - anon_sym_EQ_EQ, - STATE(618), 1, + anon_sym_PLUS, + ACTIONS(1254), 1, + anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + STATE(629), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 3, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 3, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 23, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53081,6 +54164,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -53091,31 +54176,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2396] = 10, + [2914] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1234), 1, + ACTIONS(1238), 1, anon_sym_in, - ACTIONS(1236), 1, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, + ACTIONS(1244), 1, anon_sym_BANG_TILDE, - STATE(619), 1, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, + anon_sym_DASH, + ACTIONS(1252), 1, + anon_sym_PLUS, + STATE(630), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 4, anon_sym_EQ, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 27, + ACTIONS(396), 24, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53127,9 +54220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -53143,66 +54233,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2458] = 30, + [2986] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(452), 1, - anon_sym_EQ, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, ACTIONS(1236), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1238), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1240), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1242), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1244), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1246), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1248), 1, - anon_sym_GT_GT, + anon_sym_PERCENT, ACTIONS(1250), 1, - anon_sym_BANG_EQ, + anon_sym_DASH, ACTIONS(1252), 1, - anon_sym_EQ_EQ, - ACTIONS(1254), 1, + anon_sym_PLUS, + STATE(631), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 4, + anon_sym_EQ, + anon_sym_LT_LT, anon_sym_GT, - ACTIONS(1256), 1, - anon_sym_GT_EQ, - ACTIONS(1258), 1, anon_sym_LT, - ACTIONS(1260), 1, - anon_sym_LT_EQ, - ACTIONS(1262), 1, - anon_sym_and, - ACTIONS(1264), 1, - anon_sym_or, - ACTIONS(1266), 1, - anon_sym_LBRACK, - ACTIONS(1268), 1, - anon_sym_DOT, - ACTIONS(1270), 1, - anon_sym_LT_PIPE, - ACTIONS(1272), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1274), 1, + ACTIONS(396), 24, sym_qmark, - STATE(620), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(450), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -53213,44 +54277,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, - [2560] = 17, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [3058] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, ACTIONS(1236), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, + anon_sym_in, ACTIONS(1242), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1244), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_LT_LT, - ACTIONS(1248), 1, - anon_sym_GT_GT, - STATE(621), 1, + anon_sym_BANG_TILDE, + STATE(632), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 3, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 23, + ACTIONS(396), 27, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53262,6 +54326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -53274,31 +54342,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2636] = 10, + [3120] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1234), 1, + ACTIONS(1238), 1, anon_sym_in, - ACTIONS(1236), 1, + ACTIONS(1242), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, + ACTIONS(1244), 1, anon_sym_BANG_TILDE, - STATE(622), 1, + STATE(633), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 27, + ACTIONS(396), 27, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53326,25 +54394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2698] = 7, + [3182] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - STATE(623), 1, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + STATE(634), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(434), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 30, + ACTIONS(396), 24, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53356,12 +54436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -53375,25 +54449,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2754] = 7, + [3250] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - STATE(624), 1, + ACTIONS(1238), 1, + anon_sym_in, + STATE(635), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(434), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 30, + ACTIONS(396), 29, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53406,7 +54482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_TILDE, anon_sym_STAR, - anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_SLASH, @@ -53424,29 +54499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2810] = 7, + [3308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - STATE(625), 1, + STATE(636), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(434), 6, + ACTIONS(444), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 30, + ACTIONS(442), 33, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53470,31 +54540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2866] = 6, + [3358] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1223), 1, - anon_sym_else, - STATE(626), 1, + ACTIONS(1236), 1, + anon_sym_LPAREN, + STATE(637), 1, sym_comment, - STATE(653), 1, - sym_else, - ACTIONS(448), 6, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(446), 31, + ACTIONS(396), 30, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53521,24 +54594,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2920] = 4, + [3414] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(627), 1, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + STATE(638), 1, sym_comment, - ACTIONS(470), 6, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(468), 33, + ACTIONS(396), 27, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53547,9 +54631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_TILDE, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -53562,29 +54643,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [2970] = 4, + [3476] = 24, ACTIONS(3), 1, anon_sym_POUND, - STATE(628), 1, - sym_comment, - ACTIONS(442), 6, + ACTIONS(400), 1, anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + ACTIONS(1262), 1, anon_sym_GT, + ACTIONS(1264), 1, + anon_sym_GT_EQ, + ACTIONS(1266), 1, anon_sym_LT, - ACTIONS(440), 33, + ACTIONS(1268), 1, + anon_sym_LT_EQ, + ACTIONS(1270), 1, sym_qmark, + STATE(639), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(396), 18, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53592,59 +54704,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3020] = 13, + [3566] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(400), 1, + anon_sym_EQ, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, + ACTIONS(1238), 1, anon_sym_in, - ACTIONS(1236), 1, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, + ACTIONS(1244), 1, anon_sym_BANG_TILDE, - ACTIONS(1242), 1, + ACTIONS(1246), 1, anon_sym_SLASH, - ACTIONS(1244), 1, + ACTIONS(1248), 1, anon_sym_PERCENT, - STATE(629), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 6, - anon_sym_EQ, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + ACTIONS(1262), 1, anon_sym_GT, + ACTIONS(1264), 1, + anon_sym_GT_EQ, + ACTIONS(1266), 1, anon_sym_LT, - ACTIONS(392), 24, + ACTIONS(1268), 1, + anon_sym_LT_EQ, + ACTIONS(1270), 1, sym_qmark, + ACTIONS(1272), 1, + anon_sym_and, + STATE(640), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(396), 17, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -53655,12 +54772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_RBRACK, @@ -53668,32 +54779,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3088] = 10, + [3658] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1234), 1, + ACTIONS(1238), 1, anon_sym_in, - ACTIONS(1236), 1, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, + ACTIONS(1244), 1, anon_sym_BANG_TILDE, - STATE(630), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 6, - anon_sym_EQ, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + ACTIONS(1262), 1, anon_sym_GT, + ACTIONS(1264), 1, + anon_sym_GT_EQ, + ACTIONS(1266), 1, anon_sym_LT, - ACTIONS(392), 27, + ACTIONS(1268), 1, + anon_sym_LT_EQ, + ACTIONS(1270), 1, sym_qmark, + ACTIONS(1272), 1, + anon_sym_and, + ACTIONS(1274), 1, + anon_sym_or, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1278), 1, + anon_sym_DOT, + ACTIONS(1280), 1, + anon_sym_LT_PIPE, + ACTIONS(1282), 1, + anon_sym_LT_LT_PIPE, + STATE(641), 1, + sym_comment, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(454), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -53704,45 +54849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [3150] = 7, + [3760] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - STATE(631), 1, + STATE(642), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 6, + ACTIONS(394), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 30, + ACTIONS(392), 33, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53766,30 +54892,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3206] = 8, + [3810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1234), 1, - anon_sym_in, - STATE(632), 1, + STATE(643), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(452), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 29, + ACTIONS(450), 30, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53802,6 +54928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_TILDE, anon_sym_STAR, + anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_SLASH, @@ -53819,27 +54946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3264] = 8, + [3866] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, + ACTIONS(1236), 1, anon_sym_LPAREN, - ACTIONS(1234), 1, - anon_sym_in, - STATE(633), 1, + STATE(644), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, + STATE(676), 1, sym_selector, - ACTIONS(396), 6, + STATE(677), 1, + sym_collect_query, + ACTIONS(452), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 29, + ACTIONS(450), 30, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53852,6 +54977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_LT_TILDE, anon_sym_STAR, + anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_SLASH, @@ -53869,41 +54995,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3322] = 13, + [3922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_EQ_TILDE, - ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1242), 1, - anon_sym_SLASH, - ACTIONS(1244), 1, - anon_sym_PERCENT, - STATE(634), 1, + ACTIONS(1231), 1, + anon_sym_else, + STATE(645), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 6, + STATE(699), 1, + sym_else, + ACTIONS(448), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 24, + ACTIONS(446), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -53911,63 +55024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [3390] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - STATE(635), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 4, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 24, - sym_qmark, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -53981,19 +55043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3462] = 4, + [3976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(636), 1, + STATE(646), 1, sym_comment, - ACTIONS(438), 6, + ACTIONS(410), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 33, + ACTIONS(408), 33, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54027,59 +55089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3512] = 25, + [4026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(396), 1, + STATE(647), 1, + sym_comment, + ACTIONS(470), 6, anon_sym_EQ, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_EQ_TILDE, - ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1240), 1, anon_sym_PLUS, - ACTIONS(1242), 1, - anon_sym_SLASH, - ACTIONS(1244), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, anon_sym_LT_LT, - ACTIONS(1248), 1, - anon_sym_GT_GT, - ACTIONS(1250), 1, - anon_sym_BANG_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_EQ, - ACTIONS(1254), 1, anon_sym_GT, - ACTIONS(1256), 1, - anon_sym_GT_EQ, - ACTIONS(1258), 1, anon_sym_LT, - ACTIONS(1260), 1, - anon_sym_LT_EQ, - ACTIONS(1262), 1, - anon_sym_and, - ACTIONS(1274), 1, + ACTIONS(468), 33, sym_qmark, - STATE(637), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(392), 17, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54087,97 +55114,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [3604] = 24, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(396), 1, - anon_sym_EQ, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_LT_LT, - ACTIONS(1248), 1, anon_sym_GT_GT, - ACTIONS(1250), 1, anon_sym_BANG_EQ, - ACTIONS(1252), 1, anon_sym_EQ_EQ, - ACTIONS(1254), 1, - anon_sym_GT, - ACTIONS(1256), 1, anon_sym_GT_EQ, - ACTIONS(1258), 1, - anon_sym_LT, - ACTIONS(1260), 1, anon_sym_LT_EQ, - ACTIONS(1274), 1, - sym_qmark, - STATE(638), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(392), 18, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3694] = 4, + [4076] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(639), 1, + ACTIONS(1236), 1, + anon_sym_LPAREN, + STATE(648), 1, sym_comment, - ACTIONS(466), 6, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(452), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(464), 33, + ACTIONS(450), 30, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54201,55 +55181,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3744] = 19, + [4132] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(1284), 1, + anon_sym_LBRACK, + STATE(649), 1, + sym_comment, + STATE(715), 1, + sym_hash, + ACTIONS(494), 6, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_EQ_TILDE, - ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1240), 1, anon_sym_PLUS, - ACTIONS(1242), 1, - anon_sym_SLASH, - ACTIONS(1244), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, anon_sym_LT_LT, - ACTIONS(1248), 1, - anon_sym_GT_GT, - ACTIONS(1250), 1, - anon_sym_BANG_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_EQ, - STATE(640), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(492), 29, sym_qmark, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54257,121 +55214,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [3824] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_LT_LT, - ACTIONS(1248), 1, anon_sym_GT_GT, - ACTIONS(1250), 1, anon_sym_BANG_EQ, - ACTIONS(1252), 1, anon_sym_EQ_EQ, - STATE(641), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 21, - sym_qmark, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [3904] = 19, + [4187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, + STATE(650), 1, + sym_comment, + ACTIONS(486), 6, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_EQ_TILDE, - ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1240), 1, anon_sym_PLUS, - ACTIONS(1242), 1, - anon_sym_SLASH, - ACTIONS(1244), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, anon_sym_LT_LT, - ACTIONS(1248), 1, - anon_sym_GT_GT, - ACTIONS(1250), 1, - anon_sym_BANG_EQ, - ACTIONS(1252), 1, - anon_sym_EQ_EQ, - STATE(642), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(484), 32, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54379,60 +55257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [3984] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, - anon_sym_DASH, - ACTIONS(1232), 1, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - STATE(643), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 4, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 24, - sym_qmark, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -54443,49 +55273,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4056] = 17, + [4236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, + STATE(651), 1, + sym_comment, + ACTIONS(490), 6, + anon_sym_EQ, anon_sym_DASH, - ACTIONS(1232), 1, - anon_sym_STAR, - ACTIONS(1234), 1, - anon_sym_in, - ACTIONS(1236), 1, - anon_sym_EQ_TILDE, - ACTIONS(1238), 1, - anon_sym_BANG_TILDE, - ACTIONS(1240), 1, anon_sym_PLUS, - ACTIONS(1242), 1, - anon_sym_SLASH, - ACTIONS(1244), 1, - anon_sym_PERCENT, - ACTIONS(1246), 1, anon_sym_LT_LT, - ACTIONS(1248), 1, - anon_sym_GT_GT, - STATE(644), 1, - sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 23, + ACTIONS(488), 32, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54493,6 +55302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -54502,27 +55318,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4132] = 4, + [4285] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(645), 1, + ACTIONS(1286), 1, + anon_sym_LPAREN, + STATE(652), 1, sym_comment, - ACTIONS(482), 6, + ACTIONS(476), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(480), 32, + ACTIONS(472), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54550,26 +55368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4181] = 7, + [4336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(117), 1, - anon_sym_LBRACE, - ACTIONS(1276), 1, - anon_sym_LBRACK, - STATE(646), 1, + STATE(653), 1, sym_comment, - STATE(670), 1, - sym_hash, - ACTIONS(486), 6, + ACTIONS(500), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 29, + ACTIONS(498), 32, sym_qmark, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -54593,24 +55406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_and, anon_sym_or, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4236] = 4, + [4385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(647), 1, + STATE(654), 1, sym_comment, - ACTIONS(478), 6, + ACTIONS(500), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(476), 32, + ACTIONS(498), 32, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54643,19 +55458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4285] = 4, + [4434] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(648), 1, + STATE(655), 1, sym_comment, - ACTIONS(474), 6, + ACTIONS(744), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(472), 32, + ACTIONS(742), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54684,29 +55499,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4334] = 5, + [4482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1278), 1, - anon_sym_LPAREN, - STATE(649), 1, + STATE(656), 1, sym_comment, - ACTIONS(494), 6, + ACTIONS(305), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(490), 31, + ACTIONS(303), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54730,23 +55543,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4385] = 4, + [4530] = 31, ACTIONS(3), 1, anon_sym_POUND, - STATE(650), 1, + ACTIONS(456), 1, + anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, + anon_sym_DASH, + ACTIONS(1252), 1, + anon_sym_PLUS, + ACTIONS(1254), 1, + anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + ACTIONS(1262), 1, + anon_sym_GT, + ACTIONS(1264), 1, + anon_sym_GT_EQ, + ACTIONS(1266), 1, + anon_sym_LT, + ACTIONS(1268), 1, + anon_sym_LT_EQ, + ACTIONS(1270), 1, + sym_qmark, + ACTIONS(1272), 1, + anon_sym_and, + ACTIONS(1274), 1, + anon_sym_or, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1278), 1, + anon_sym_DOT, + ACTIONS(1280), 1, + anon_sym_LT_PIPE, + ACTIONS(1282), 1, + anon_sym_LT_LT_PIPE, + STATE(657), 1, sym_comment, - ACTIONS(474), 6, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + ACTIONS(1288), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(454), 8, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, + anon_sym_EQ_GT, + [4632] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(658), 1, + sym_comment, + ACTIONS(694), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(472), 32, + ACTIONS(692), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54775,23 +55658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4434] = 4, + [4680] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(651), 1, + STATE(659), 1, sym_comment, - ACTIONS(746), 6, + ACTIONS(756), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(744), 31, + ACTIONS(754), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54823,19 +55705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4482] = 4, + [4728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(652), 1, + STATE(660), 1, sym_comment, - ACTIONS(718), 6, + ACTIONS(752), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(716), 31, + ACTIONS(750), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54867,24 +55749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4530] = 4, + [4776] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(653), 1, + ACTIONS(1290), 1, + anon_sym_LPAREN, + STATE(661), 1, sym_comment, - ACTIONS(558), 6, + ACTIONS(508), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(556), 31, + ACTIONS(506), 30, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -54911,19 +55794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4578] = 4, + [4826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(654), 1, + STATE(662), 1, sym_comment, - ACTIONS(305), 6, + ACTIONS(690), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 31, + ACTIONS(688), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54955,19 +55838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4626] = 4, + [4874] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(655), 1, + STATE(663), 1, sym_comment, - ACTIONS(684), 6, + ACTIONS(702), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(682), 31, + ACTIONS(700), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -54999,19 +55882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4674] = 4, + [4922] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(656), 1, + STATE(664), 1, sym_comment, - ACTIONS(582), 6, + ACTIONS(710), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(580), 31, + ACTIONS(708), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55043,40 +55926,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4722] = 9, + [4970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_elsif, - ACTIONS(1282), 1, - anon_sym_else, - STATE(657), 1, + STATE(665), 1, sym_comment, - STATE(724), 1, - aux_sym_if_repeat1, - STATE(735), 1, - sym_elsif, - STATE(790), 1, - sym_else, - ACTIONS(305), 3, + ACTIONS(508), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 29, + ACTIONS(506), 31, sym_qmark, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -55087,24 +55965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [4780] = 4, + [5018] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(658), 1, + STATE(666), 1, sym_comment, - ACTIONS(486), 6, + ACTIONS(730), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 31, + ACTIONS(728), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55136,19 +56014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4828] = 4, + [5066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(659), 1, + STATE(667), 1, sym_comment, - ACTIONS(604), 6, + ACTIONS(714), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(602), 31, + ACTIONS(712), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55180,19 +56058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4876] = 4, + [5114] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(660), 1, + STATE(668), 1, sym_comment, - ACTIONS(648), 6, + ACTIONS(596), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(646), 31, + ACTIONS(594), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55224,19 +56102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4924] = 4, + [5162] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(661), 1, + STATE(669), 1, sym_comment, - ACTIONS(562), 6, + ACTIONS(584), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(560), 31, + ACTIONS(582), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55268,19 +56146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [4972] = 4, + [5210] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(662), 1, + STATE(670), 1, sym_comment, - ACTIONS(570), 6, + ACTIONS(540), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(568), 31, + ACTIONS(538), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55312,90 +56190,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5020] = 31, + [5258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(452), 1, + STATE(671), 1, + sym_comment, + ACTIONS(592), 6, anon_sym_EQ, - ACTIONS(1228), 1, - anon_sym_LPAREN, - ACTIONS(1230), 1, anon_sym_DASH, - ACTIONS(1232), 1, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(590), 31, + sym_qmark, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, - anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_LT_LT, - ACTIONS(1248), 1, anon_sym_GT_GT, - ACTIONS(1250), 1, anon_sym_BANG_EQ, - ACTIONS(1252), 1, anon_sym_EQ_EQ, - ACTIONS(1254), 1, - anon_sym_GT, - ACTIONS(1256), 1, anon_sym_GT_EQ, - ACTIONS(1258), 1, - anon_sym_LT, - ACTIONS(1260), 1, anon_sym_LT_EQ, - ACTIONS(1262), 1, anon_sym_and, - ACTIONS(1264), 1, anon_sym_or, - ACTIONS(1266), 1, anon_sym_LBRACK, - ACTIONS(1268), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1270), 1, + anon_sym_EQ_GT, anon_sym_LT_PIPE, - ACTIONS(1272), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1274), 1, - sym_qmark, - STATE(663), 1, + [5306] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(672), 1, sym_comment, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - ACTIONS(1284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(450), 8, + ACTIONS(600), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(598), 31, + sym_qmark, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_DASH_GT, anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, - [5122] = 4, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [5354] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(664), 1, + STATE(673), 1, sym_comment, - ACTIONS(574), 6, + ACTIONS(678), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(572), 31, + ACTIONS(676), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55427,19 +56322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5170] = 4, + [5402] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(665), 1, + STATE(674), 1, sym_comment, - ACTIONS(680), 6, + ACTIONS(722), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(678), 31, + ACTIONS(720), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55471,25 +56366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5218] = 5, + [5450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_LPAREN, - STATE(666), 1, + STATE(675), 1, sym_comment, - ACTIONS(592), 6, + ACTIONS(764), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 30, + ACTIONS(762), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -55516,19 +56410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5268] = 4, + [5498] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(667), 1, + STATE(676), 1, sym_comment, - ACTIONS(640), 6, + ACTIONS(646), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(638), 31, + ACTIONS(644), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55560,21 +56454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5316] = 4, + [5546] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(668), 1, + ACTIONS(1292), 1, + anon_sym_LBRACE, + STATE(677), 1, sym_comment, - ACTIONS(592), 6, + ACTIONS(638), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 31, + ACTIONS(634), 30, sym_qmark, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -55604,19 +56499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5364] = 4, + [5596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(669), 1, + STATE(678), 1, sym_comment, - ACTIONS(620), 6, + ACTIONS(616), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(618), 31, + ACTIONS(614), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55648,19 +56543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5412] = 4, + [5644] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(670), 1, + STATE(679), 1, sym_comment, - ACTIONS(628), 6, + ACTIONS(524), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(626), 31, + ACTIONS(522), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55692,19 +56587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5460] = 4, + [5692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(671), 1, + STATE(680), 1, sym_comment, - ACTIONS(656), 6, + ACTIONS(528), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(654), 31, + ACTIONS(526), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55736,19 +56631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5508] = 4, + [5740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(672), 1, + STATE(681), 1, sym_comment, - ACTIONS(660), 6, + ACTIONS(738), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(658), 31, + ACTIONS(736), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55780,19 +56675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5556] = 4, + [5788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(673), 1, + STATE(682), 1, sym_comment, - ACTIONS(664), 6, + ACTIONS(536), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(662), 31, + ACTIONS(534), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55824,19 +56719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5604] = 4, + [5836] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(674), 1, + STATE(683), 1, sym_comment, - ACTIONS(668), 6, + ACTIONS(548), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(666), 31, + ACTIONS(546), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55868,19 +56763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5652] = 4, + [5884] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(675), 1, + STATE(684), 1, sym_comment, - ACTIONS(692), 6, + ACTIONS(556), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(690), 31, + ACTIONS(554), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55912,19 +56807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5700] = 4, + [5932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(676), 1, + STATE(685), 1, sym_comment, - ACTIONS(696), 6, + ACTIONS(572), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(694), 31, + ACTIONS(570), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55956,19 +56851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5748] = 4, + [5980] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(677), 1, + STATE(686), 1, sym_comment, - ACTIONS(738), 6, + ACTIONS(580), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(736), 31, + ACTIONS(578), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56000,19 +56895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5796] = 4, + [6028] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(678), 1, + STATE(687), 1, sym_comment, - ACTIONS(636), 6, + ACTIONS(588), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(634), 31, + ACTIONS(586), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56044,19 +56939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5844] = 4, + [6076] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(679), 1, + STATE(688), 1, sym_comment, - ACTIONS(546), 6, + ACTIONS(568), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(544), 31, + ACTIONS(566), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56088,19 +56983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5892] = 4, + [6124] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(680), 1, + STATE(689), 1, sym_comment, - ACTIONS(734), 6, + ACTIONS(748), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(732), 31, + ACTIONS(746), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56132,19 +57027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5940] = 4, + [6172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(681), 1, + STATE(690), 1, sym_comment, - ACTIONS(542), 6, + ACTIONS(608), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(540), 31, + ACTIONS(606), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56176,19 +57071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [5988] = 4, + [6220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(682), 1, + STATE(691), 1, sym_comment, - ACTIONS(538), 6, + ACTIONS(612), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(536), 31, + ACTIONS(610), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56220,19 +57115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6036] = 4, + [6268] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(683), 1, + STATE(692), 1, sym_comment, - ACTIONS(534), 6, + ACTIONS(620), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(532), 31, + ACTIONS(618), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56264,19 +57159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6084] = 4, + [6316] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(684), 1, + STATE(693), 1, sym_comment, - ACTIONS(526), 6, + ACTIONS(632), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(524), 31, + ACTIONS(630), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56308,19 +57203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6132] = 4, + [6364] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(685), 1, + STATE(694), 1, sym_comment, - ACTIONS(624), 6, + ACTIONS(666), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(622), 31, + ACTIONS(664), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56352,40 +57247,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6180] = 9, + [6412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_elsif, - ACTIONS(1282), 1, - anon_sym_else, - STATE(657), 1, - aux_sym_if_repeat1, - STATE(686), 1, + STATE(695), 1, sym_comment, - STATE(735), 1, - sym_elsif, - STATE(811), 1, - sym_else, - ACTIONS(291), 3, + ACTIONS(624), 6, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(289), 29, + ACTIONS(622), 31, sym_qmark, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_GT, + anon_sym_TILDE_GT, + anon_sym_LT_DASH, + anon_sym_LT_TILDE, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -56396,24 +57286,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [6238] = 4, + [6460] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(687), 1, + STATE(696), 1, sym_comment, - ACTIONS(518), 6, + ACTIONS(494), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(516), 31, + ACTIONS(492), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56445,19 +57335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6286] = 4, + [6508] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(688), 1, + STATE(697), 1, sym_comment, - ACTIONS(730), 6, + ACTIONS(532), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(728), 31, + ACTIONS(530), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56489,19 +57379,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6334] = 4, + [6556] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(689), 1, + ACTIONS(1294), 1, + anon_sym_elsif, + ACTIONS(1296), 1, + anon_sym_else, + STATE(698), 1, sym_comment, - ACTIONS(726), 6, + STATE(700), 1, + aux_sym_if_repeat1, + STATE(735), 1, + sym_elsif, + STATE(809), 1, + sym_else, + ACTIONS(321), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(319), 29, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_PIPE_GT, + anon_sym_LT_LT_PIPE, + [6614] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(699), 1, + sym_comment, + ACTIONS(520), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(724), 31, + ACTIONS(518), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56533,19 +57472,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6382] = 4, + [6662] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(690), 1, + ACTIONS(1294), 1, + anon_sym_elsif, + ACTIONS(1296), 1, + anon_sym_else, + STATE(700), 1, sym_comment, - ACTIONS(374), 6, + STATE(730), 1, + aux_sym_if_repeat1, + STATE(735), 1, + sym_elsif, + STATE(800), 1, + sym_else, + ACTIONS(305), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(303), 29, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_PIPE_GT, + anon_sym_LT_LT_PIPE, + [6720] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(701), 1, + sym_comment, + ACTIONS(512), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 31, + ACTIONS(510), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56577,19 +57565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6430] = 4, + [6768] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(691), 1, + STATE(702), 1, sym_comment, - ACTIONS(722), 6, + ACTIONS(760), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(720), 31, + ACTIONS(758), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56621,19 +57609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6478] = 4, + [6816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(692), 1, + STATE(703), 1, sym_comment, - ACTIONS(498), 6, + ACTIONS(706), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(496), 31, + ACTIONS(704), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56665,19 +57653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6526] = 4, + [6864] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(693), 1, + STATE(704), 1, sym_comment, - ACTIONS(616), 6, + ACTIONS(628), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(614), 31, + ACTIONS(626), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56709,19 +57697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6574] = 4, + [6912] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(694), 1, + STATE(705), 1, sym_comment, - ACTIONS(550), 6, + ACTIONS(662), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(548), 31, + ACTIONS(660), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56753,19 +57741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6622] = 4, + [6960] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(695), 1, + STATE(706), 1, sym_comment, - ACTIONS(714), 6, + ACTIONS(698), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(712), 31, + ACTIONS(696), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56797,19 +57785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6670] = 4, + [7008] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(696), 1, + STATE(707), 1, sym_comment, - ACTIONS(382), 6, + ACTIONS(726), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 31, + ACTIONS(724), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56841,19 +57829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6718] = 4, + [7056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(697), 1, + STATE(708), 1, sym_comment, - ACTIONS(600), 6, + ACTIONS(718), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(598), 31, + ACTIONS(716), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56885,19 +57873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6766] = 4, + [7104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(698), 1, + STATE(709), 1, sym_comment, - ACTIONS(596), 6, + ACTIONS(390), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(594), 31, + ACTIONS(388), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56929,19 +57917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6814] = 4, + [7152] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(699), 1, + STATE(710), 1, sym_comment, - ACTIONS(578), 6, + ACTIONS(682), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(576), 31, + ACTIONS(680), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56973,19 +57961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6862] = 4, + [7200] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(700), 1, + STATE(711), 1, sym_comment, - ACTIONS(566), 6, + ACTIONS(674), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(564), 31, + ACTIONS(672), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57017,19 +58005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6910] = 4, + [7248] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(701), 1, + STATE(712), 1, sym_comment, - ACTIONS(554), 6, + ACTIONS(674), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(552), 31, + ACTIONS(672), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57061,19 +58049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [6958] = 4, + [7296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(702), 1, + STATE(713), 1, sym_comment, - ACTIONS(530), 6, + ACTIONS(670), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(528), 31, + ACTIONS(668), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57105,19 +58093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7006] = 4, + [7344] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(703), 1, + STATE(714), 1, sym_comment, - ACTIONS(522), 6, + ACTIONS(658), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(520), 31, + ACTIONS(656), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57149,19 +58137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7054] = 4, + [7392] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(704), 1, + STATE(715), 1, sym_comment, - ACTIONS(510), 6, + ACTIONS(642), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(508), 31, + ACTIONS(640), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57193,19 +58181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7102] = 4, + [7440] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(705), 1, + STATE(716), 1, sym_comment, - ACTIONS(704), 6, + ACTIONS(604), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(702), 31, + ACTIONS(602), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57237,19 +58225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7150] = 4, + [7488] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(706), 1, + STATE(717), 1, sym_comment, - ACTIONS(632), 6, + ACTIONS(576), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(630), 31, + ACTIONS(574), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57281,19 +58269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7198] = 4, + [7536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(707), 1, + STATE(718), 1, sym_comment, - ACTIONS(514), 6, + ACTIONS(382), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 31, + ACTIONS(380), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57325,19 +58313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7246] = 4, + [7584] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(708), 1, + STATE(719), 1, sym_comment, - ACTIONS(586), 6, + ACTIONS(564), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(584), 31, + ACTIONS(562), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57369,19 +58357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7294] = 4, + [7632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(709), 1, + STATE(720), 1, sym_comment, - ACTIONS(754), 6, + ACTIONS(560), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(752), 31, + ACTIONS(558), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57413,22 +58401,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7342] = 5, + [7680] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1288), 1, - anon_sym_LBRACE, - STATE(710), 1, + STATE(721), 1, sym_comment, - ACTIONS(760), 6, + ACTIONS(552), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(756), 30, + ACTIONS(550), 31, sym_qmark, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -57458,19 +58445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7392] = 4, + [7728] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(711), 1, + STATE(722), 1, sym_comment, - ACTIONS(750), 6, + ACTIONS(544), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(748), 31, + ACTIONS(542), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57502,19 +58489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7440] = 4, + [7776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(712), 1, + STATE(723), 1, sym_comment, - ACTIONS(742), 6, + ACTIONS(516), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(740), 31, + ACTIONS(514), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57546,19 +58533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7488] = 4, + [7824] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(713), 1, + STATE(724), 1, sym_comment, - ACTIONS(688), 6, + ACTIONS(504), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(686), 31, + ACTIONS(502), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57590,19 +58577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7536] = 4, + [7872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(714), 1, + STATE(725), 1, sym_comment, - ACTIONS(676), 6, + ACTIONS(734), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(674), 31, + ACTIONS(732), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57634,19 +58621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7584] = 4, + [7920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(715), 1, + STATE(726), 1, sym_comment, - ACTIONS(672), 6, + ACTIONS(650), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(670), 31, + ACTIONS(648), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57678,19 +58665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7632] = 4, + [7968] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(716), 1, + STATE(727), 1, sym_comment, - ACTIONS(506), 6, + ACTIONS(686), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 31, + ACTIONS(684), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57722,19 +58709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7680] = 4, + [8016] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(717), 1, + STATE(728), 1, sym_comment, - ACTIONS(506), 6, + ACTIONS(654), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 31, + ACTIONS(652), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57766,19 +58753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7728] = 4, + [8064] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(718), 1, + STATE(729), 1, sym_comment, - ACTIONS(608), 6, + ACTIONS(768), 6, anon_sym_EQ, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(606), 31, + ACTIONS(766), 31, sym_qmark, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57810,35 +58797,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7776] = 4, + [8112] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(719), 1, + ACTIONS(1298), 1, + anon_sym_elsif, + STATE(735), 1, + sym_elsif, + STATE(730), 2, sym_comment, - ACTIONS(652), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PLUS, + aux_sym_if_repeat1, + ACTIONS(357), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(650), 31, + ACTIONS(355), 30, sym_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -57849,29 +58836,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [7824] = 4, + [8163] = 31, ACTIONS(3), 1, anon_sym_POUND, - STATE(720), 1, - sym_comment, - ACTIONS(644), 6, + ACTIONS(456), 1, anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_in, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_EQ_TILDE, + ACTIONS(1244), 1, + anon_sym_BANG_TILDE, + ACTIONS(1246), 1, + anon_sym_SLASH, + ACTIONS(1248), 1, + anon_sym_PERCENT, + ACTIONS(1250), 1, anon_sym_DASH, + ACTIONS(1252), 1, anon_sym_PLUS, + ACTIONS(1254), 1, anon_sym_LT_LT, + ACTIONS(1256), 1, + anon_sym_GT_GT, + ACTIONS(1258), 1, + anon_sym_BANG_EQ, + ACTIONS(1260), 1, + anon_sym_EQ_EQ, + ACTIONS(1262), 1, anon_sym_GT, + ACTIONS(1264), 1, + anon_sym_GT_EQ, + ACTIONS(1266), 1, anon_sym_LT, - ACTIONS(642), 31, + ACTIONS(1268), 1, + anon_sym_LT_EQ, + ACTIONS(1270), 1, sym_qmark, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1272), 1, + anon_sym_and, + ACTIONS(1274), 1, + anon_sym_or, + ACTIONS(1276), 1, + anon_sym_LBRACK, + ACTIONS(1278), 1, + anon_sym_DOT, + ACTIONS(1280), 1, + anon_sym_LT_PIPE, + ACTIONS(1282), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1301), 1, anon_sym_COMMA, - anon_sym_LPAREN, + STATE(676), 1, + sym_selector, + STATE(677), 1, + sym_collect_query, + STATE(731), 1, + sym_comment, + ACTIONS(454), 8, + anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -57879,10 +58912,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, + [8264] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(732), 1, + sym_comment, + STATE(820), 1, + sym_lambda, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(378), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 28, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -57893,40 +58952,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7872] = 4, + [8315] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(721), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(733), 1, sym_comment, - ACTIONS(612), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PLUS, + STATE(789), 1, + sym_lambda, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(386), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(610), 31, + ACTIONS(384), 28, sym_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -57937,40 +58996,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7920] = 4, + [8366] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(722), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(734), 1, sym_comment, - ACTIONS(700), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PLUS, + STATE(835), 1, + sym_lambda, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(698), 31, + ACTIONS(380), 28, sym_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -57981,40 +59040,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [7968] = 4, + [8417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(723), 1, + STATE(735), 1, sym_comment, - ACTIONS(502), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(410), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(500), 31, + ACTIONS(408), 31, sym_qmark, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -58025,26 +59078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8016] = 6, + [8462] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1290), 1, - anon_sym_elsif, - STATE(735), 1, - sym_elsif, - STATE(724), 2, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(736), 1, sym_comment, - aux_sym_if_repeat1, - ACTIONS(331), 3, + STATE(769), 1, + sym_lambda, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(372), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(329), 30, + ACTIONS(370), 28, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58070,95 +59126,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8067] = 31, + [8513] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(452), 1, - anon_sym_EQ, - ACTIONS(1228), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(737), 1, + sym_comment, + STATE(838), 1, + sym_lambda, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(390), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 28, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1230), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(1232), 1, anon_sym_STAR, - ACTIONS(1234), 1, anon_sym_in, - ACTIONS(1236), 1, anon_sym_EQ_TILDE, - ACTIONS(1238), 1, anon_sym_BANG_TILDE, - ACTIONS(1240), 1, anon_sym_PLUS, - ACTIONS(1242), 1, anon_sym_SLASH, - ACTIONS(1244), 1, anon_sym_PERCENT, - ACTIONS(1246), 1, - anon_sym_LT_LT, - ACTIONS(1248), 1, anon_sym_GT_GT, - ACTIONS(1250), 1, anon_sym_BANG_EQ, - ACTIONS(1252), 1, anon_sym_EQ_EQ, - ACTIONS(1254), 1, - anon_sym_GT, - ACTIONS(1256), 1, anon_sym_GT_EQ, - ACTIONS(1258), 1, - anon_sym_LT, - ACTIONS(1260), 1, anon_sym_LT_EQ, - ACTIONS(1262), 1, anon_sym_and, - ACTIONS(1264), 1, anon_sym_or, - ACTIONS(1266), 1, anon_sym_LBRACK, - ACTIONS(1268), 1, anon_sym_DOT, - ACTIONS(1270), 1, + anon_sym_EQ_GT, anon_sym_LT_PIPE, - ACTIONS(1272), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1274), 1, - sym_qmark, - ACTIONS(1293), 1, - anon_sym_COMMA, - STATE(710), 1, - sym_collect_query, - STATE(711), 1, - sym_selector, - STATE(725), 1, - sym_comment, - ACTIONS(450), 8, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_GT, - anon_sym_TILDE_GT, - anon_sym_LT_DASH, - anon_sym_LT_TILDE, - [8168] = 6, + [8564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_else, - STATE(726), 1, + STATE(738), 1, sym_comment, - STATE(809), 1, - sym_else, - ACTIONS(448), 3, + ACTIONS(394), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(446), 29, + ACTIONS(392), 31, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58184,20 +59208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8217] = 4, + [8609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(727), 1, + STATE(739), 1, sym_comment, - ACTIONS(442), 3, + ACTIONS(444), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(440), 31, + ACTIONS(442), 31, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58229,10 +59255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8262] = 4, + [8654] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(728), 1, + STATE(740), 1, sym_comment, ACTIONS(470), 3, anon_sym_LT_LT, @@ -58270,22 +59296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8307] = 7, + [8699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(729), 1, + ACTIONS(1296), 1, + anon_sym_else, + STATE(741), 1, sym_comment, - STATE(801), 1, - sym_lambda, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(364), 3, + STATE(810), 1, + sym_else, + ACTIONS(448), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(362), 28, + ACTIONS(446), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58313,34 +59337,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8358] = 7, + [8748] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(730), 1, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + STATE(742), 1, sym_comment, - STATE(800), 1, - sym_lambda, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(370), 3, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 28, + ACTIONS(396), 26, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, - anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_PLUS, @@ -58358,32 +59383,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8409] = 4, + [8800] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(731), 1, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + STATE(743), 1, sym_comment, - ACTIONS(438), 3, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 31, + ACTIONS(396), 21, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -58393,41 +59429,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8454] = 7, + [8862] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(732), 1, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + STATE(744), 1, sym_comment, - STATE(767), 1, - sym_lambda, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(386), 3, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 28, + ACTIONS(396), 24, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -58443,38 +59478,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8505] = 7, + [8918] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(733), 1, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + STATE(745), 1, sym_comment, - STATE(778), 1, - sym_lambda, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(382), 3, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 28, + ACTIONS(396), 21, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -58487,28 +59527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8556] = 7, + [8980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(734), 1, + ACTIONS(1303), 1, + anon_sym_LPAREN, + STATE(746), 1, sym_comment, - STATE(780), 1, - sym_lambda, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(374), 3, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 28, + ACTIONS(396), 27, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, @@ -58531,19 +59570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8607] = 4, + [9030] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(735), 1, + ACTIONS(229), 1, + anon_sym_LBRACE, + ACTIONS(1317), 1, + anon_sym_LBRACK, + STATE(747), 1, sym_comment, - ACTIONS(466), 3, + STATE(785), 1, + sym_hash, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(464), 31, + ACTIONS(492), 27, sym_qmark, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -58564,62 +59608,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_LBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [8652] = 24, + [9080] = 24, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - STATE(736), 1, + STATE(748), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(392), 12, + STATE(771), 1, + sym_selector, + ACTIONS(396), 12, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, @@ -58632,41 +59673,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8736] = 8, + [9164] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - STATE(737), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 3, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + ACTIONS(1327), 1, + anon_sym_BANG_EQ, + ACTIONS(1329), 1, + anon_sym_EQ_EQ, + ACTIONS(1331), 1, anon_sym_GT, + ACTIONS(1333), 1, + anon_sym_GT_EQ, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(392), 26, + ACTIONS(1337), 1, + anon_sym_LT_EQ, + ACTIONS(1341), 1, sym_qmark, + STATE(749), 1, + sym_comment, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(396), 13, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [9246] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + STATE(750), 1, + sym_comment, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 16, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -58676,28 +59787,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8788] = 10, + [9320] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - STATE(738), 1, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + ACTIONS(1327), 1, + anon_sym_BANG_EQ, + ACTIONS(1329), 1, + anon_sym_EQ_EQ, + STATE(751), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, - anon_sym_LT_LT, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 24, + ACTIONS(396), 16, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58705,14 +59833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -58722,22 +59842,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8844] = 7, + [9394] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - STATE(739), 1, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + ACTIONS(1327), 1, + anon_sym_BANG_EQ, + ACTIONS(1329), 1, + anon_sym_EQ_EQ, + STATE(752), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, - anon_sym_LT_LT, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 27, + ACTIONS(396), 16, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58745,17 +59888,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [9468] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + STATE(753), 1, + sym_comment, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 16, + sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -58765,22 +59952,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8894] = 7, + [9542] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - STATE(740), 1, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + STATE(754), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(434), 3, - anon_sym_LT_LT, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 27, + ACTIONS(396), 18, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58788,15 +59994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -58808,34 +60005,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [8944] = 13, + [9612] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - ACTIONS(1309), 1, + ACTIONS(1313), 1, anon_sym_SLASH, - ACTIONS(1311), 1, + ACTIONS(1315), 1, anon_sym_PERCENT, - STATE(741), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + STATE(755), 1, + sym_comment, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, - anon_sym_LT_LT, + STATE(771), 1, + sym_selector, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 18, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58843,9 +60047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -58857,66 +60058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9006] = 8, + [9682] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - STATE(742), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 26, - sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DASH, + ACTIONS(1307), 1, anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [9058] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - STATE(743), 1, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + STATE(756), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(434), 3, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 27, + ACTIONS(396), 19, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58924,14 +60097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -58944,22 +60109,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9108] = 7, + [9748] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + STATE(757), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(434), 3, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 27, + ACTIONS(396), 24, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -58969,9 +60140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -58987,34 +60155,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9158] = 13, + [9804] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - ACTIONS(1309), 1, + ACTIONS(1313), 1, anon_sym_SLASH, - ACTIONS(1311), 1, + ACTIONS(1315), 1, anon_sym_PERCENT, - STATE(745), 1, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + STATE(758), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 19, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59022,8 +60194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -59036,28 +60206,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9220] = 10, + [9870] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1301), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - STATE(746), 1, + STATE(759), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 24, + ACTIONS(396), 24, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59082,28 +60252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9276] = 10, + [9926] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - STATE(747), 1, + anon_sym_in, + STATE(760), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, + STATE(771), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 24, + ACTIONS(396), 26, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59113,6 +60279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -59128,38 +60296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9332] = 15, + [9978] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - STATE(748), 1, + anon_sym_LPAREN, + STATE(761), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, + STATE(771), 1, + sym_selector, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 19, + ACTIONS(450), 27, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59167,6 +60319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -59179,38 +60339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9398] = 15, + [10028] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - STATE(749), 1, + anon_sym_LPAREN, + STATE(762), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 3, + STATE(771), 1, + sym_selector, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 19, + ACTIONS(450), 27, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59218,60 +60362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [9464] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - STATE(750), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 18, - sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -59283,41 +60382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9534] = 17, + [10078] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, - anon_sym_GT_GT, - STATE(751), 1, + anon_sym_LPAREN, + STATE(763), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - ACTIONS(396), 2, + STATE(771), 1, + sym_selector, + ACTIONS(452), 3, + anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 18, + ACTIONS(450), 27, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59325,63 +60405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [9604] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - STATE(752), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 16, - sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -59391,107 +60425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [9678] = 19, + [10128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, - anon_sym_GT_GT, - ACTIONS(1317), 1, - anon_sym_BANG_EQ, - ACTIONS(1319), 1, - anon_sym_EQ_EQ, - STATE(753), 1, + STATE(764), 1, sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 2, + ACTIONS(654), 3, + anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 16, + ACTIONS(652), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [9752] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - STATE(754), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 16, - sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -59500,139 +60462,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [9826] = 19, + [10171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + STATE(765), 1, + sym_comment, + ACTIONS(1343), 14, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1297), 1, + anon_sym_AT_AT, + anon_sym_BANG, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, - anon_sym_GT_GT, - ACTIONS(1317), 1, - anon_sym_BANG_EQ, - ACTIONS(1319), 1, - anon_sym_EQ_EQ, - STATE(755), 1, - sym_comment, - STATE(765), 1, - sym_selector, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1345), 18, + anon_sym_AT, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + sym_name, + sym_true, + sym_false, + [10214] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(766), 1, - sym_collect_query, - ACTIONS(396), 2, + sym_comment, + ACTIONS(524), 3, + anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 16, + ACTIONS(522), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [9900] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1331), 1, - sym_qmark, - STATE(756), 1, - sym_comment, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - ACTIONS(392), 13, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [9982] = 7, + [10257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(227), 1, - anon_sym_LBRACE, - ACTIONS(1333), 1, - anon_sym_LBRACK, - STATE(757), 1, + STATE(767), 1, sym_comment, - STATE(792), 1, - sym_hash, - ACTIONS(486), 3, + ACTIONS(658), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 27, + ACTIONS(656), 29, sym_qmark, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -59653,21 +60575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_and, anon_sym_or, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10032] = 4, + [10300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(758), 1, + STATE(768), 1, sym_comment, - ACTIONS(486), 3, + ACTIONS(490), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 29, + ACTIONS(488), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59693,20 +60616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10075] = 4, + [10343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(759), 1, + STATE(769), 1, sym_comment, - ACTIONS(526), 3, + ACTIONS(616), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(524), 29, + ACTIONS(614), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59736,19 +60659,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10118] = 4, + [10386] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(760), 1, + ACTIONS(1347), 1, + anon_sym_LBRACE, + STATE(770), 1, sym_comment, - ACTIONS(676), 3, + ACTIONS(638), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(674), 29, + ACTIONS(634), 28, sym_qmark, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -59775,16 +60699,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10161] = 4, + [10431] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(761), 1, + STATE(771), 1, sym_comment, - ACTIONS(652), 3, + ACTIONS(646), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(650), 29, + ACTIONS(644), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59814,16 +60738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10204] = 4, + [10474] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(762), 1, + STATE(772), 1, sym_comment, - ACTIONS(688), 3, + ACTIONS(764), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(686), 29, + ACTIONS(762), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59853,16 +60777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10247] = 4, + [10517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(763), 1, + STATE(773), 1, sym_comment, - ACTIONS(742), 3, + ACTIONS(744), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(740), 29, + ACTIONS(742), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59892,55 +60816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10290] = 4, + [10560] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(764), 1, - sym_comment, - ACTIONS(1335), 14, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_AT_AT, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1337), 18, - anon_sym_AT, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - sym_name, - sym_true, - sym_false, - [10333] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(765), 1, + STATE(774), 1, sym_comment, - ACTIONS(750), 3, + ACTIONS(722), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(748), 29, + ACTIONS(720), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -59970,20 +60855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10376] = 5, + [10603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1339), 1, - anon_sym_LBRACE, - STATE(766), 1, + STATE(775), 1, sym_comment, - ACTIONS(760), 3, + ACTIONS(678), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(756), 28, + ACTIONS(676), 29, sym_qmark, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -60010,16 +60894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10421] = 4, + [10646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(767), 1, + STATE(776), 1, sym_comment, - ACTIONS(754), 3, + ACTIONS(600), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(752), 29, + ACTIONS(598), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60049,16 +60933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10464] = 4, + [10689] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(768), 1, + STATE(777), 1, sym_comment, - ACTIONS(680), 3, + ACTIONS(592), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(678), 29, + ACTIONS(590), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60088,16 +60972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10507] = 4, + [10732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(769), 1, + STATE(778), 1, sym_comment, - ACTIONS(684), 3, + ACTIONS(540), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(682), 29, + ACTIONS(538), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60127,22 +61011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10550] = 4, + [10775] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(770), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(779), 1, sym_comment, - ACTIONS(692), 3, + ACTIONS(476), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(690), 29, + ACTIONS(472), 28, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, @@ -60162,20 +61047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10593] = 4, + [10820] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(771), 1, + STATE(780), 1, sym_comment, - ACTIONS(696), 3, + ACTIONS(584), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(694), 29, + ACTIONS(582), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60205,16 +61090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10636] = 4, + [10863] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(772), 1, + STATE(781), 1, sym_comment, - ACTIONS(700), 3, + ACTIONS(596), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(698), 29, + ACTIONS(594), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60244,16 +61129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10679] = 4, + [10906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(773), 1, + STATE(782), 1, sym_comment, - ACTIONS(704), 3, + ACTIONS(674), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(702), 29, + ACTIONS(672), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60283,16 +61168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10722] = 4, + [10949] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(774), 1, + STATE(783), 1, sym_comment, - ACTIONS(586), 3, + ACTIONS(730), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(584), 29, + ACTIONS(728), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60322,16 +61207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10765] = 4, + [10992] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(775), 1, + STATE(784), 1, sym_comment, - ACTIONS(714), 3, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(712), 29, + ACTIONS(506), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60361,16 +61246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10808] = 4, + [11035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(776), 1, + STATE(785), 1, sym_comment, - ACTIONS(718), 3, + ACTIONS(642), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(716), 29, + ACTIONS(640), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60400,16 +61285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10851] = 4, + [11078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(777), 1, + STATE(786), 1, sym_comment, - ACTIONS(498), 3, + ACTIONS(752), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(496), 29, + ACTIONS(750), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60439,16 +61324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10894] = 4, + [11121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(778), 1, + STATE(787), 1, sym_comment, - ACTIONS(722), 3, + ACTIONS(756), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(720), 29, + ACTIONS(754), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60478,16 +61363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10937] = 4, + [11164] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(779), 1, + STATE(788), 1, sym_comment, - ACTIONS(514), 3, + ACTIONS(694), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 29, + ACTIONS(692), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60517,16 +61402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [10980] = 4, + [11207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(780), 1, + STATE(789), 1, sym_comment, - ACTIONS(730), 3, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(728), 29, + ACTIONS(380), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60556,16 +61441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11023] = 4, + [11250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(781), 1, + STATE(790), 1, sym_comment, - ACTIONS(734), 3, + ACTIONS(682), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(732), 29, + ACTIONS(680), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60595,16 +61480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11066] = 4, + [11293] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(782), 1, + STATE(791), 1, sym_comment, - ACTIONS(738), 3, + ACTIONS(604), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(736), 29, + ACTIONS(602), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60634,16 +61519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11109] = 4, + [11336] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(783), 1, + STATE(792), 1, sym_comment, - ACTIONS(746), 3, + ACTIONS(536), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(744), 29, + ACTIONS(534), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60673,16 +61558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11152] = 4, + [11379] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(784), 1, + STATE(793), 1, sym_comment, - ACTIONS(632), 3, + ACTIONS(548), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(630), 29, + ACTIONS(546), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60712,16 +61597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11195] = 4, + [11422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(785), 1, + STATE(794), 1, sym_comment, - ACTIONS(668), 3, + ACTIONS(556), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(666), 29, + ACTIONS(554), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60751,16 +61636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11238] = 4, + [11465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(786), 1, + STATE(795), 1, sym_comment, - ACTIONS(664), 3, + ACTIONS(572), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(662), 29, + ACTIONS(570), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60790,16 +61675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11281] = 4, + [11508] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(787), 1, + STATE(796), 1, sym_comment, - ACTIONS(660), 3, + ACTIONS(580), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(658), 29, + ACTIONS(578), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60829,16 +61714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11324] = 4, + [11551] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(788), 1, + STATE(797), 1, sym_comment, - ACTIONS(656), 3, + ACTIONS(588), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(654), 29, + ACTIONS(586), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60868,16 +61753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11367] = 4, + [11594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(789), 1, + STATE(798), 1, sym_comment, - ACTIONS(522), 3, + ACTIONS(608), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(520), 29, + ACTIONS(606), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60907,16 +61792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11410] = 4, + [11637] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(790), 1, + STATE(799), 1, sym_comment, - ACTIONS(640), 3, + ACTIONS(612), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(638), 29, + ACTIONS(610), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60946,16 +61831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11453] = 4, + [11680] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(791), 1, + STATE(800), 1, sym_comment, - ACTIONS(636), 3, + ACTIONS(576), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(634), 29, + ACTIONS(574), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -60985,16 +61870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11496] = 4, + [11723] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(792), 1, + STATE(801), 1, sym_comment, - ACTIONS(628), 3, + ACTIONS(500), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(626), 29, + ACTIONS(498), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61020,20 +61905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11539] = 4, + [11766] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(793), 1, + STATE(802), 1, sym_comment, - ACTIONS(478), 3, + ACTIONS(500), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(476), 29, + ACTIONS(498), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61063,16 +61948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [11582] = 4, + [11809] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(794), 1, + STATE(803), 1, sym_comment, - ACTIONS(612), 3, + ACTIONS(666), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(610), 29, + ACTIONS(664), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61102,16 +61987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11625] = 4, + [11852] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(795), 1, + STATE(804), 1, sym_comment, - ACTIONS(608), 3, + ACTIONS(624), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(606), 29, + ACTIONS(622), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61141,16 +62026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11668] = 4, + [11895] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(796), 1, + STATE(805), 1, sym_comment, - ACTIONS(644), 3, + ACTIONS(486), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(642), 29, + ACTIONS(484), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61176,20 +62061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11711] = 4, + [11938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(797), 1, + STATE(806), 1, sym_comment, - ACTIONS(506), 3, + ACTIONS(620), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 29, + ACTIONS(618), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61219,16 +62104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11754] = 4, + [11981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(798), 1, + STATE(807), 1, sym_comment, - ACTIONS(506), 3, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 29, + ACTIONS(492), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61258,16 +62143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11797] = 4, + [12024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(799), 1, + STATE(808), 1, sym_comment, - ACTIONS(510), 3, + ACTIONS(532), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(508), 29, + ACTIONS(530), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61297,16 +62182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11840] = 4, + [12067] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(800), 1, + STATE(809), 1, sym_comment, - ACTIONS(382), 3, + ACTIONS(305), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 29, + ACTIONS(303), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61336,16 +62221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11883] = 4, + [12110] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(801), 1, + STATE(810), 1, sym_comment, - ACTIONS(374), 3, + ACTIONS(520), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 29, + ACTIONS(518), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61375,16 +62260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11926] = 4, + [12153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(802), 1, + STATE(811), 1, sym_comment, - ACTIONS(518), 3, + ACTIONS(564), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(516), 29, + ACTIONS(562), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61414,23 +62299,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [11969] = 5, + [12196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1341), 1, - anon_sym_LPAREN, - STATE(803), 1, + STATE(812), 1, sym_comment, - ACTIONS(494), 3, + ACTIONS(512), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(490), 28, + ACTIONS(510), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_DASH, @@ -61450,20 +62334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12014] = 4, + [12239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(804), 1, + STATE(813), 1, sym_comment, - ACTIONS(534), 3, + ACTIONS(528), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(532), 29, + ACTIONS(526), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61493,16 +62377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12057] = 4, + [12282] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(805), 1, + STATE(814), 1, sym_comment, - ACTIONS(538), 3, + ACTIONS(706), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(536), 29, + ACTIONS(704), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61532,16 +62416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12100] = 4, + [12325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(806), 1, + STATE(815), 1, sym_comment, - ACTIONS(542), 3, + ACTIONS(628), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(540), 29, + ACTIONS(626), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61571,16 +62455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12143] = 4, + [12368] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(807), 1, + STATE(816), 1, sym_comment, - ACTIONS(546), 3, + ACTIONS(662), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(544), 29, + ACTIONS(660), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61610,16 +62494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12186] = 4, + [12411] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(808), 1, + STATE(817), 1, sym_comment, - ACTIONS(550), 3, + ACTIONS(698), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(548), 29, + ACTIONS(696), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61649,16 +62533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12229] = 4, + [12454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(809), 1, + STATE(818), 1, sym_comment, - ACTIONS(558), 3, + ACTIONS(726), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(556), 29, + ACTIONS(724), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61688,16 +62572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12272] = 4, + [12497] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(810), 1, + STATE(819), 1, sym_comment, - ACTIONS(530), 3, + ACTIONS(718), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(528), 29, + ACTIONS(716), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61727,16 +62611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12315] = 4, + [12540] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(811), 1, + STATE(820), 1, sym_comment, - ACTIONS(305), 3, + ACTIONS(390), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 29, + ACTIONS(388), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61766,16 +62650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12358] = 4, + [12583] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(812), 1, + STATE(821), 1, sym_comment, - ACTIONS(554), 3, + ACTIONS(768), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(552), 29, + ACTIONS(766), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61805,16 +62689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12401] = 4, + [12626] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(813), 1, + STATE(822), 1, sym_comment, - ACTIONS(566), 3, + ACTIONS(504), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(564), 29, + ACTIONS(502), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61844,16 +62728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12444] = 4, + [12669] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(814), 1, + STATE(823), 1, sym_comment, - ACTIONS(562), 3, + ACTIONS(560), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(560), 29, + ACTIONS(558), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61883,16 +62767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12487] = 4, + [12712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(815), 1, + STATE(824), 1, sym_comment, - ACTIONS(578), 3, + ACTIONS(674), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(576), 29, + ACTIONS(672), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61922,16 +62806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12530] = 4, + [12755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(816), 1, + STATE(825), 1, sym_comment, - ACTIONS(596), 3, + ACTIONS(760), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(594), 29, + ACTIONS(758), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -61961,16 +62845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12573] = 4, + [12798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(817), 1, + STATE(826), 1, sym_comment, - ACTIONS(570), 3, + ACTIONS(552), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(568), 29, + ACTIONS(550), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62000,16 +62884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12616] = 4, + [12841] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(818), 1, + STATE(827), 1, sym_comment, - ACTIONS(600), 3, + ACTIONS(748), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(598), 29, + ACTIONS(746), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62039,16 +62923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12659] = 4, + [12884] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(819), 1, + STATE(828), 1, sym_comment, - ACTIONS(574), 3, + ACTIONS(738), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(572), 29, + ACTIONS(736), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62078,16 +62962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12702] = 4, + [12927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(820), 1, + STATE(829), 1, sym_comment, - ACTIONS(474), 3, + ACTIONS(714), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(472), 29, + ACTIONS(712), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62113,20 +62997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12745] = 4, + [12970] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(821), 1, + STATE(830), 1, sym_comment, - ACTIONS(616), 3, + ACTIONS(710), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(614), 29, + ACTIONS(708), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62156,16 +63040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12788] = 4, + [13013] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(822), 1, + STATE(831), 1, sym_comment, - ACTIONS(474), 3, + ACTIONS(670), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(472), 29, + ACTIONS(668), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62191,20 +63075,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12831] = 4, + [13056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(823), 1, + STATE(832), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(702), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 29, + ACTIONS(700), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62234,16 +63118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12874] = 4, + [13099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(824), 1, + STATE(833), 1, sym_comment, - ACTIONS(620), 3, + ACTIONS(690), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(618), 29, + ACTIONS(688), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62273,16 +63157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12917] = 4, + [13142] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(825), 1, + STATE(834), 1, sym_comment, - ACTIONS(582), 3, + ACTIONS(568), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(580), 29, + ACTIONS(566), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62312,16 +63196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [12960] = 4, + [13185] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(826), 1, + STATE(835), 1, sym_comment, - ACTIONS(624), 3, + ACTIONS(686), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(622), 29, + ACTIONS(684), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62351,16 +63235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13003] = 4, + [13228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(827), 1, + STATE(836), 1, sym_comment, - ACTIONS(672), 3, + ACTIONS(632), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(670), 29, + ACTIONS(630), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62390,16 +63274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13046] = 4, + [13271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(828), 1, + STATE(837), 1, sym_comment, - ACTIONS(502), 3, + ACTIONS(544), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(500), 29, + ACTIONS(542), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62429,16 +63313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13089] = 4, + [13314] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(829), 1, + STATE(838), 1, sym_comment, - ACTIONS(726), 3, + ACTIONS(650), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(724), 29, + ACTIONS(648), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62468,16 +63352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13132] = 4, + [13357] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(830), 1, + STATE(839), 1, sym_comment, - ACTIONS(482), 3, + ACTIONS(734), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(480), 29, + ACTIONS(732), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62503,20 +63387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13175] = 4, + [13400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(831), 1, + STATE(840), 1, sym_comment, - ACTIONS(604), 3, + ACTIONS(516), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(602), 29, + ACTIONS(514), 29, sym_qmark, anon_sym_SEMI, anon_sym_LBRACE, @@ -62546,24 +63430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13218] = 4, + [13443] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(832), 1, + ACTIONS(1351), 1, + anon_sym_elsif, + ACTIONS(1353), 1, + anon_sym_else, + STATE(841), 1, sym_comment, - ACTIONS(648), 3, + STATE(850), 1, + aux_sym_if_repeat1, + STATE(872), 1, + sym_elsif, + STATE(1056), 1, + sym_else, + ACTIONS(305), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(646), 29, + ACTIONS(303), 23, sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -62581,29 +63470,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [13261] = 5, + [13495] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1343), 1, - anon_sym_LPAREN, - STATE(833), 1, + ACTIONS(1351), 1, + anon_sym_elsif, + ACTIONS(1353), 1, + anon_sym_else, + STATE(841), 1, + aux_sym_if_repeat1, + STATE(842), 1, sym_comment, - ACTIONS(592), 3, + STATE(872), 1, + sym_elsif, + STATE(1033), 1, + sym_else, + ACTIONS(321), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 27, + ACTIONS(319), 23, sym_qmark, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -62621,32 +63513,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [13305] = 9, + [13547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1345), 1, - anon_sym_elsif, - ACTIONS(1347), 1, - anon_sym_else, - STATE(834), 1, + ACTIONS(1355), 1, + anon_sym_LPAREN, + STATE(843), 1, sym_comment, - STATE(839), 1, - aux_sym_if_repeat1, - STATE(866), 1, - sym_elsif, - STATE(1024), 1, - sym_else, - ACTIONS(291), 3, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(289), 23, + ACTIONS(506), 27, sym_qmark, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -62664,15 +63552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [13357] = 4, + [13591] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(835), 1, + STATE(844), 1, sym_comment, - ACTIONS(1349), 14, + ACTIONS(1357), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -62687,7 +63575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1351), 17, + ACTIONS(1359), 17, anon_sym_if, anon_sym_unless, anon_sym_case, @@ -62705,12 +63593,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [13399] = 4, + [13633] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(836), 1, + STATE(845), 1, sym_comment, - ACTIONS(1353), 14, + ACTIONS(1361), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -62725,7 +63613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1355), 17, + ACTIONS(1363), 17, anon_sym_if, anon_sym_unless, anon_sym_case, @@ -62743,12 +63631,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [13441] = 4, + [13675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(837), 1, + STATE(846), 1, sym_comment, - ACTIONS(436), 14, + ACTIONS(468), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -62763,7 +63651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(438), 17, + ACTIONS(470), 17, anon_sym_if, anon_sym_unless, anon_sym_case, @@ -62781,12 +63669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [13483] = 4, + [13717] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(838), 1, + STATE(847), 1, sym_comment, - ACTIONS(440), 14, + ACTIONS(442), 14, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -62801,7 +63689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(442), 17, + ACTIONS(444), 17, anon_sym_if, anon_sym_unless, anon_sym_case, @@ -62819,28 +63707,65 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [13525] = 9, + [13759] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1345), 1, + STATE(848), 1, + sym_comment, + ACTIONS(1365), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_AT_LPAREN, + anon_sym_LBRACK2, + sym_type, + sym_number, + ACTIONS(1367), 17, + anon_sym_if, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + sym_name, + sym_true, + sym_false, + [13801] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1369), 1, anon_sym_elsif, - ACTIONS(1347), 1, + ACTIONS(1371), 1, anon_sym_else, - STATE(839), 1, + STATE(849), 1, sym_comment, - STATE(844), 1, + STATE(853), 1, aux_sym_if_repeat1, - STATE(866), 1, + STATE(974), 1, sym_elsif, - STATE(1044), 1, + STATE(1132), 1, sym_else, ACTIONS(305), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 23, + ACTIONS(303), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -62859,67 +63784,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [13577] = 4, + anon_sym_PIPE_GT_GT, + [13852] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(840), 1, + ACTIONS(1373), 1, + anon_sym_elsif, + STATE(872), 1, + sym_elsif, + STATE(850), 2, sym_comment, - ACTIONS(1357), 14, - anon_sym_LBRACE, - anon_sym_RBRACE, + aux_sym_if_repeat1, + ACTIONS(357), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(355), 24, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_BANG, anon_sym_DASH, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - anon_sym_AT_LPAREN, - anon_sym_LBRACK2, - sym_type, - sym_number, - ACTIONS(1359), 17, - anon_sym_if, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - sym_name, - sym_true, - sym_false, - [13619] = 9, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_else, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [13897] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1361), 1, + ACTIONS(1369), 1, anon_sym_elsif, - ACTIONS(1363), 1, + ACTIONS(1371), 1, anon_sym_else, - STATE(841), 1, - sym_comment, - STATE(846), 1, + STATE(849), 1, aux_sym_if_repeat1, - STATE(926), 1, + STATE(851), 1, + sym_comment, + STATE(974), 1, sym_elsif, - STATE(1086), 1, + STATE(1111), 1, sym_else, - ACTIONS(305), 3, + ACTIONS(321), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 22, + ACTIONS(319), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -62942,12 +63868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [13670] = 4, + [13948] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(842), 1, + STATE(852), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1376), 13, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_BANG, @@ -62961,7 +63887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_type, sym_number, - ACTIONS(1367), 17, + ACTIONS(1378), 17, anon_sym_if, anon_sym_unless, anon_sym_case, @@ -62979,26 +63905,21 @@ static const uint16_t ts_small_parse_table[] = { sym_name, sym_true, sym_false, - [13711] = 9, + [13989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1361), 1, + ACTIONS(1380), 1, anon_sym_elsif, - ACTIONS(1363), 1, - anon_sym_else, - STATE(841), 1, - aux_sym_if_repeat1, - STATE(843), 1, - sym_comment, - STATE(926), 1, + STATE(974), 1, sym_elsif, - STATE(1095), 1, - sym_else, - ACTIONS(291), 3, + STATE(853), 2, + sym_comment, + aux_sym_if_repeat1, + ACTIONS(357), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(289), 22, + ACTIONS(355), 23, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -63018,694 +63939,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [13762] = 6, + [14033] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1385), 1, + anon_sym_COMMA, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + STATE(854), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1384), 1, + sym__attribute_operations, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(1383), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [14087] = 31, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1369), 1, - anon_sym_elsif, - STATE(866), 1, - sym_elsif, - STATE(844), 2, - sym_comment, - aux_sym_if_repeat1, - ACTIONS(331), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(329), 24, - sym_qmark, - anon_sym_COMMA, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1391), 1, + anon_sym_COMMA, + ACTIONS(1393), 1, + anon_sym_COLON, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_else, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [13807] = 31, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(855), 1, + sym_comment, + STATE(1394), 1, + aux_sym__expressions_repeat1, + [14181] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1372), 1, - anon_sym_COMMA, - ACTIONS(1374), 1, - anon_sym_COLON, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(845), 1, + STATE(771), 1, + sym_selector, + STATE(856), 1, sym_comment, - STATE(1396), 1, - aux_sym__expressions_repeat1, - [13901] = 6, + ACTIONS(1405), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [14271] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_elsif, - STATE(926), 1, - sym_elsif, - STATE(846), 2, - sym_comment, - aux_sym_if_repeat1, - ACTIONS(331), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(329), 23, - sym_qmark, + ACTIONS(1407), 1, anon_sym_LPAREN, + ACTIONS(1409), 1, anon_sym_DASH, + ACTIONS(1411), 1, anon_sym_STAR, + ACTIONS(1413), 1, anon_sym_in, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, + ACTIONS(1419), 1, anon_sym_PLUS, + ACTIONS(1421), 1, anon_sym_SLASH, + ACTIONS(1423), 1, anon_sym_PERCENT, + ACTIONS(1425), 1, + anon_sym_LT_LT, + ACTIONS(1427), 1, anon_sym_GT_GT, + ACTIONS(1429), 1, anon_sym_BANG_EQ, + ACTIONS(1431), 1, anon_sym_EQ_EQ, + STATE(857), 1, + sym_comment, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 11, + sym_qmark, + anon_sym_COMMA, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_else, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [13945] = 29, + [14340] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1399), 1, + anon_sym_DOT, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1299), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1309), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1311), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1315), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1435), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1437), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1439), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1441), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1443), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1445), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1447), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1449), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1451), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(847), 1, - sym_comment, - ACTIONS(1389), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [14035] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1393), 1, - anon_sym_COMMA, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - STATE(848), 1, + ACTIONS(1453), 1, + sym_qmark, + STATE(858), 1, sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1357), 1, - sym__attribute_operations, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(1391), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [14089] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1401), 1, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(1433), 2, anon_sym_COMMA, - STATE(849), 1, - sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1409), 1, - sym__attribute_operations, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [14142] = 30, + anon_sym_PIPE, + [14429] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, ACTIONS(1403), 1, - anon_sym_LBRACE, - STATE(123), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + anon_sym_LT_LT_PIPE, + STATE(770), 1, sym_collect_query, - STATE(850), 1, + STATE(771), 1, + sym_selector, + STATE(859), 1, sym_comment, - [14233] = 30, + ACTIONS(1455), 2, + anon_sym_COMMA, + anon_sym_COLON, + [14518] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1405), 1, - anon_sym_LBRACE, - STATE(54), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(851), 1, + STATE(771), 1, + sym_selector, + STATE(860), 1, sym_comment, - [14324] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1407), 1, - anon_sym_RBRACE, - ACTIONS(1409), 1, + ACTIONS(1433), 2, anon_sym_COMMA, - STATE(852), 1, - sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1466), 1, - sym__attribute_operations, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [14377] = 11, + anon_sym_RPAREN, + [14607] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1411), 1, - anon_sym_RBRACE, - ACTIONS(1413), 1, - anon_sym_COMMA, - STATE(853), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(861), 1, sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1498), 1, - sym__attribute_operations, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [14430] = 30, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1295), 1, + STATE(1043), 1, + sym_lambda, + STATE(1289), 1, + sym__lambda_parameter_list, + ACTIONS(378), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 22, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(834), 1, - sym_block, - STATE(854), 1, - sym_comment, - [14521] = 30, + [14652] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(855), 1, + STATE(771), 1, + sym_selector, + STATE(862), 1, sym_comment, - STATE(893), 1, - sym_block, - [14612] = 30, + ACTIONS(1457), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [14741] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1415), 1, + ACTIONS(1459), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(132), 1, + sym_block, + STATE(770), 1, sym_collect_query, - STATE(856), 1, + STATE(771), 1, + sym_selector, + STATE(863), 1, sym_comment, - STATE(857), 1, - sym_block, - [14703] = 4, + [14832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(857), 1, + STATE(864), 1, sym_comment, - ACTIONS(470), 3, + ACTIONS(394), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(468), 25, + ACTIONS(392), 25, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -63731,79 +64534,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [14742] = 30, + [14871] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1405), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(139), 1, + STATE(741), 1, sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(858), 1, + STATE(771), 1, + sym_selector, + STATE(865), 1, sym_comment, - [14833] = 4, + [14962] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(859), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1463), 1, + anon_sym_RBRACE, + ACTIONS(1465), 1, + anon_sym_COMMA, + STATE(866), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1480), 1, + sym__attribute_operations, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [15015] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(867), 1, sym_comment, - ACTIONS(438), 3, + STATE(1150), 1, + sym_lambda, + STATE(1306), 1, + sym__lambda_parameter_list, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 25, + ACTIONS(380), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -63822,27 +64672,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_elsif, - anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [14872] = 7, + anon_sym_PIPE_GT_GT, + [15060] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, + ACTIONS(1467), 1, anon_sym_PIPE, - STATE(860), 1, + STATE(868), 1, sym_comment, - STATE(1137), 1, + STATE(1138), 1, sym_lambda, - STATE(1291), 1, + STATE(1306), 1, sym__lambda_parameter_list, - ACTIONS(382), 3, + ACTIONS(390), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 22, + ACTIONS(388), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -63865,16 +64713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [14917] = 4, + [15105] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(861), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(869), 1, sym_comment, - ACTIONS(442), 3, + STATE(1045), 1, + sym_lambda, + STATE(1289), 1, + sym__lambda_parameter_list, + ACTIONS(386), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(440), 25, + ACTIONS(384), 22, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -63895,104 +64749,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_elsif, - anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [14956] = 7, + [15150] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(862), 1, - sym_comment, - STATE(1144), 1, - sym_lambda, - STATE(1291), 1, - sym__lambda_parameter_list, - ACTIONS(374), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 22, - sym_qmark, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [15001] = 7, + ACTIONS(1469), 1, + anon_sym_LBRACE, + STATE(115), 1, + sym_block, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(870), 1, + sym_comment, + [15241] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(801), 1, - sym_lambda, - STATE(863), 1, - sym_comment, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(364), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 22, - sym_qmark, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [15046] = 7, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(871), 1, + sym_comment, + STATE(897), 1, + sym_block, + [15332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(800), 1, - sym_lambda, - STATE(864), 1, + STATE(872), 1, sym_comment, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(370), 3, + ACTIONS(410), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 22, + ACTIONS(408), 25, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -64011,27 +64903,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_elsif, + anon_sym_else, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [15091] = 7, + [15371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, - anon_sym_LPAREN, - STATE(865), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(820), 1, + sym_lambda, + STATE(873), 1, sym_comment, - STATE(981), 1, - sym_collect_query, - STATE(1002), 1, - sym_selector, - ACTIONS(434), 3, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(378), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 22, + ACTIONS(376), 22, sym_qmark, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -64049,21 +64943,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [15136] = 4, + [15416] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(866), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(789), 1, + sym_lambda, + STATE(874), 1, sym_comment, - ACTIONS(466), 3, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(386), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(464), 25, + ACTIONS(384), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -64082,88 +64981,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_elsif, - anon_sym_else, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [15175] = 30, + [15461] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(875), 1, + sym_comment, + STATE(1065), 1, + sym_lambda, + STATE(1289), 1, + sym__lambda_parameter_list, + ACTIONS(390), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 22, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1421), 1, - anon_sym_LBRACE, - STATE(253), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(867), 1, - sym_comment, - [15266] = 7, + [15506] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1037), 1, + ACTIONS(1041), 1, anon_sym_LBRACE, - ACTIONS(1423), 1, + ACTIONS(1473), 1, anon_sym_LBRACK, - STATE(868), 1, + STATE(876), 1, sym_comment, - STATE(1041), 1, + STATE(1053), 1, sym_hash, - ACTIONS(486), 3, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 22, + ACTIONS(492), 22, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -64186,54 +65060,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15311] = 24, + [15551] = 24, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - ACTIONS(1449), 1, + ACTIONS(1435), 1, anon_sym_GT, - ACTIONS(1451), 1, + ACTIONS(1437), 1, anon_sym_GT_EQ, - ACTIONS(1453), 1, + ACTIONS(1439), 1, anon_sym_LT, - ACTIONS(1455), 1, + ACTIONS(1441), 1, anon_sym_LT_EQ, - ACTIONS(1457), 1, + ACTIONS(1443), 1, anon_sym_and, - ACTIONS(1459), 1, + ACTIONS(1453), 1, sym_qmark, - STATE(869), 1, + STATE(877), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(392), 7, + ACTIONS(396), 7, anon_sym_COMMA, anon_sym_or, anon_sym_LBRACK, @@ -64241,52 +65115,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15390] = 23, + [15630] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - ACTIONS(1449), 1, + ACTIONS(1435), 1, anon_sym_GT, - ACTIONS(1451), 1, + ACTIONS(1437), 1, anon_sym_GT_EQ, - ACTIONS(1453), 1, + ACTIONS(1439), 1, anon_sym_LT, - ACTIONS(1455), 1, + ACTIONS(1441), 1, anon_sym_LT_EQ, - ACTIONS(1459), 1, + ACTIONS(1453), 1, sym_qmark, - STATE(870), 1, + STATE(878), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(392), 8, + ACTIONS(396), 8, anon_sym_COMMA, anon_sym_and, anon_sym_or, @@ -64295,47 +65169,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15467] = 19, + [15707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + STATE(879), 1, + sym_comment, + ACTIONS(444), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(442), 25, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1425), 1, anon_sym_DASH, - ACTIONS(1427), 1, anon_sym_STAR, - ACTIONS(1429), 1, anon_sym_in, - ACTIONS(1431), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, anon_sym_PLUS, - ACTIONS(1437), 1, anon_sym_SLASH, - ACTIONS(1439), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, - anon_sym_LT_LT, - ACTIONS(1443), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, anon_sym_EQ_EQ, - STATE(871), 1, - sym_comment, - STATE(981), 1, - sym_collect_query, - STATE(1002), 1, - sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 11, - sym_qmark, - anon_sym_COMMA, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -64343,47 +65200,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_PIPE, + anon_sym_elsif, + anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15536] = 19, + [15746] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - STATE(872), 1, + STATE(880), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 11, + ACTIONS(396), 11, sym_qmark, anon_sym_COMMA, anon_sym_GT_EQ, @@ -64395,45 +65254,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15605] = 19, + [15815] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - STATE(873), 1, + STATE(881), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 11, + ACTIONS(396), 11, sym_qmark, anon_sym_COMMA, anon_sym_GT_EQ, @@ -64445,45 +65304,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15674] = 19, + [15884] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1429), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1431), 1, anon_sym_EQ_EQ, - STATE(874), 1, + STATE(882), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 11, + ACTIONS(396), 11, sym_qmark, anon_sym_COMMA, anon_sym_GT_EQ, @@ -64495,41 +65354,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15743] = 17, + [15953] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - STATE(875), 1, + STATE(883), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 13, + ACTIONS(396), 13, sym_qmark, anon_sym_COMMA, anon_sym_BANG_EQ, @@ -64543,41 +65402,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15808] = 17, + [16018] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1425), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1427), 1, anon_sym_GT_GT, - STATE(876), 1, + STATE(884), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 13, + ACTIONS(396), 13, sym_qmark, anon_sym_COMMA, anon_sym_BANG_EQ, @@ -64591,38 +65450,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15873] = 15, + [16083] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - STATE(877), 1, + STATE(885), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 14, + ACTIONS(396), 14, sym_qmark, anon_sym_COMMA, anon_sym_GT_GT, @@ -64637,38 +65496,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15934] = 15, + [16144] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1409), 1, anon_sym_DASH, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, + ACTIONS(1419), 1, anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - STATE(878), 1, + STATE(886), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 14, + ACTIONS(396), 14, sym_qmark, anon_sym_COMMA, anon_sym_GT_GT, @@ -64683,28 +65542,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [15995] = 10, + [16205] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - STATE(879), 1, + STATE(887), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 19, + ACTIONS(396), 19, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64724,28 +65583,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16046] = 10, + [16256] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - STATE(880), 1, + STATE(888), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 19, + ACTIONS(396), 19, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64765,34 +65624,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16097] = 13, + [16307] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1411), 1, anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - ACTIONS(1437), 1, + ACTIONS(1421), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1423), 1, anon_sym_PERCENT, - STATE(881), 1, + STATE(889), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 16, + ACTIONS(396), 16, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64809,24 +65668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16154] = 8, + [16364] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - STATE(882), 1, + STATE(890), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 21, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64848,24 +65707,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16201] = 8, + [16411] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - STATE(883), 1, + STATE(891), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 21, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64887,22 +65746,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16248] = 7, + [16458] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - STATE(884), 1, + STATE(892), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 22, + ACTIONS(396), 22, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64925,28 +65784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16293] = 10, + [16503] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1429), 1, + ACTIONS(1413), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1415), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1417), 1, anon_sym_BANG_TILDE, - STATE(885), 1, + STATE(893), 1, sym_comment, - STATE(981), 1, + STATE(987), 1, sym_collect_query, - STATE(1002), 1, + STATE(1032), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 19, + ACTIONS(396), 19, sym_qmark, anon_sym_COMMA, anon_sym_DASH, @@ -64966,32 +65825,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16344] = 7, + [16554] = 13, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1407), 1, + anon_sym_LPAREN, + ACTIONS(1411), 1, + anon_sym_STAR, + ACTIONS(1413), 1, + anon_sym_in, + ACTIONS(1415), 1, + anon_sym_EQ_TILDE, ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(886), 1, + anon_sym_BANG_TILDE, + ACTIONS(1421), 1, + anon_sym_SLASH, + ACTIONS(1423), 1, + anon_sym_PERCENT, + STATE(894), 1, sym_comment, - STATE(1106), 1, - sym_lambda, - STATE(1291), 1, - sym__lambda_parameter_list, - ACTIONS(364), 3, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(362), 22, + ACTIONS(396), 16, sym_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -65001,88 +65866,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [16389] = 30, + [16611] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(895), 1, + sym_comment, + STATE(1142), 1, + sym_lambda, + STATE(1306), 1, + sym__lambda_parameter_list, + ACTIONS(386), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 22, + sym_qmark, anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(887), 1, - sym_comment, - STATE(958), 1, - sym_block, - [16480] = 7, + anon_sym_PIPE_GT_GT, + [16656] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, - anon_sym_LPAREN, - STATE(888), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(896), 1, sym_comment, - STATE(981), 1, - sym_collect_query, - STATE(1002), 1, - sym_selector, - ACTIONS(434), 3, + STATE(1144), 1, + sym_lambda, + STATE(1306), 1, + sym__lambda_parameter_list, + ACTIONS(378), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 22, + ACTIONS(376), 22, sym_qmark, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -65100,69 +65942,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16525] = 11, + anon_sym_PIPE_GT_GT, + [16701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1463), 1, - anon_sym_RBRACE, - ACTIONS(1465), 1, - anon_sym_COMMA, - STATE(889), 1, - sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1533), 1, - sym__attribute_operations, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, + ACTIONS(1353), 1, anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [16578] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1419), 1, - anon_sym_LPAREN, - STATE(890), 1, + STATE(897), 1, sym_comment, - STATE(981), 1, - sym_collect_query, - STATE(1002), 1, - sym_selector, - ACTIONS(434), 3, + STATE(1035), 1, + sym_else, + ACTIONS(448), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 22, + ACTIONS(446), 23, sym_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -65183,142 +65982,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16623] = 30, + [16744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + STATE(898), 1, + sym_comment, + ACTIONS(470), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(468), 25, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, + anon_sym_PIPE, + anon_sym_elsif, + anon_sym_else, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(610), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(891), 1, - sym_comment, - [16714] = 30, + [16783] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, + ACTIONS(845), 1, + anon_sym_RPAREN, ACTIONS(1301), 1, - anon_sym_in, + anon_sym_COMMA, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(843), 1, - sym_block, - STATE(892), 1, + STATE(771), 1, + sym_selector, + STATE(899), 1, sym_comment, - [16805] = 6, + [16874] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1347), 1, - anon_sym_else, - STATE(893), 1, + ACTIONS(374), 1, + anon_sym_PIPE, + STATE(900), 1, sym_comment, - STATE(1026), 1, - sym_else, - ACTIONS(448), 3, + STATE(1067), 1, + sym_lambda, + STATE(1289), 1, + sym__lambda_parameter_list, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(446), 23, + ACTIONS(380), 22, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -65339,86 +66114,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [16848] = 30, + [16919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(838), 1, + sym_lambda, + STATE(901), 1, + sym_comment, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(390), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 22, + sym_qmark, anon_sym_LPAREN, - ACTIONS(1297), 1, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1469), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(894), 1, - sym_comment, - [16939] = 7, + [16964] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, + ACTIONS(1467), 1, anon_sym_PIPE, - STATE(895), 1, - sym_comment, - STATE(1107), 1, + STATE(835), 1, sym_lambda, - STATE(1291), 1, + STATE(902), 1, + sym_comment, + STATE(1301), 1, sym__lambda_parameter_list, - ACTIONS(370), 3, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 22, + ACTIONS(380), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -65439,40 +66190,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [16984] = 13, + [17009] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1419), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1429), 1, - anon_sym_in, - ACTIONS(1431), 1, - anon_sym_EQ_TILDE, - ACTIONS(1433), 1, - anon_sym_BANG_TILDE, - ACTIONS(1437), 1, - anon_sym_SLASH, - ACTIONS(1439), 1, - anon_sym_PERCENT, - STATE(896), 1, + ACTIONS(1467), 1, + anon_sym_PIPE, + STATE(769), 1, + sym_lambda, + STATE(903), 1, sym_comment, - STATE(981), 1, - sym_collect_query, - STATE(1002), 1, - sym_selector, - ACTIONS(396), 3, + STATE(1301), 1, + sym__lambda_parameter_list, + ACTIONS(372), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 16, + ACTIONS(370), 22, sym_qmark, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -65482,147 +66227,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [17041] = 30, + [17054] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1461), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(614), 1, + sym_block, + STATE(770), 1, sym_collect_query, - STATE(897), 1, + STATE(771), 1, + sym_selector, + STATE(904), 1, sym_comment, - STATE(975), 1, - sym_block, - [17132] = 30, + [17145] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1467), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - STATE(626), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(898), 1, + STATE(771), 1, + sym_selector, + STATE(842), 1, + sym_block, + STATE(905), 1, sym_comment, - [17223] = 7, + [17236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, + ACTIONS(1467), 1, anon_sym_PIPE, - STATE(767), 1, - sym_lambda, - STATE(899), 1, + STATE(906), 1, sym_comment, - STATE(1292), 1, + STATE(1099), 1, + sym_lambda, + STATE(1306), 1, sym__lambda_parameter_list, - ACTIONS(386), 3, + ACTIONS(372), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 22, + ACTIONS(370), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -65643,286 +66388,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [17268] = 30, + anon_sym_PIPE_GT_GT, + [17281] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(837), 1, - anon_sym_RPAREN, - ACTIONS(1293), 1, - anon_sym_COMMA, - ACTIONS(1295), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + STATE(907), 1, + sym_comment, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(452), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 22, + sym_qmark, + anon_sym_COMMA, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, + anon_sym_PIPE, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(900), 1, - sym_comment, - [17359] = 11, + [17326] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1471), 1, - anon_sym_RBRACE, - ACTIONS(1473), 1, - anon_sym_COMMA, - STATE(901), 1, + ACTIONS(1407), 1, + anon_sym_LPAREN, + STATE(908), 1, sym_comment, - STATE(1343), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1479), 1, - sym__attribute_operations, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(452), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 22, + sym_qmark, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_STAR, anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [17412] = 30, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [17371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1407), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + STATE(909), 1, + sym_comment, + STATE(987), 1, + sym_collect_query, + STATE(1032), 1, + sym_selector, + ACTIONS(452), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 22, + sym_qmark, + anon_sym_COMMA, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, + anon_sym_PIPE, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(627), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(902), 1, - sym_comment, - [17503] = 29, + [17416] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, anon_sym_LT_LT, - ACTIONS(1315), 1, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(698), 1, + sym_block, + STATE(770), 1, sym_collect_query, - STATE(903), 1, + STATE(771), 1, + sym_selector, + STATE(910), 1, sym_comment, - ACTIONS(1475), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [17592] = 7, + [17507] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(780), 1, - sym_lambda, - STATE(904), 1, - sym_comment, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(374), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 22, - sym_qmark, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [17637] = 7, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_block, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(911), 1, + sym_comment, + [17598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, + ACTIONS(374), 1, anon_sym_PIPE, - STATE(905), 1, + STATE(912), 1, sym_comment, - STATE(1003), 1, + STATE(1031), 1, sym_lambda, - STATE(1271), 1, + STATE(1289), 1, sym__lambda_parameter_list, - ACTIONS(386), 3, + ACTIONS(372), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 22, + ACTIONS(370), 22, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -65945,520 +66664,806 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [17682] = 7, + [17643] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(778), 1, - sym_lambda, - STATE(906), 1, - sym_comment, - STATE(1292), 1, - sym__lambda_parameter_list, - ACTIONS(382), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 22, - sym_qmark, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [17727] = 29, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(913), 1, + sym_comment, + STATE(941), 1, + sym_block, + [17734] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1481), 1, + anon_sym_COMMA, + STATE(914), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1419), 1, + sym__attribute_operations, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [17787] = 30, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(770), 1, sym_collect_query, - STATE(907), 1, + STATE(771), 1, + sym_selector, + STATE(915), 1, sym_comment, - ACTIONS(1477), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [17816] = 29, + STATE(983), 1, + sym_block, + [17878] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1483), 1, + anon_sym_RBRACE, + ACTIONS(1485), 1, + anon_sym_COMMA, + STATE(916), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + STATE(1538), 1, + sym__attribute_operations, + ACTIONS(243), 20, anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [17931] = 30, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(770), 1, sym_collect_query, - STATE(908), 1, + STATE(771), 1, + sym_selector, + STATE(851), 1, + sym_block, + STATE(917), 1, sym_comment, - ACTIONS(1479), 2, + [18022] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1487), 1, + anon_sym_RBRACE, + ACTIONS(1489), 1, anon_sym_COMMA, - anon_sym_COLON, - [17905] = 29, + STATE(918), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1415), 1, + sym__attribute_operations, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [18075] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1380), 1, - anon_sym_DOT, - ACTIONS(1419), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_DASH, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1429), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1431), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1433), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - ACTIONS(1435), 1, - anon_sym_PLUS, - ACTIONS(1437), 1, + ACTIONS(1313), 1, anon_sym_SLASH, - ACTIONS(1439), 1, + ACTIONS(1315), 1, anon_sym_PERCENT, - ACTIONS(1441), 1, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, anon_sym_LT_LT, - ACTIONS(1443), 1, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1445), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1447), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1449), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1451), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1453), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1455), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1457), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1459), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1481), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1483), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1485), 1, + ACTIONS(1399), 1, + anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1487), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(909), 1, - sym_comment, - STATE(981), 1, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_block, + STATE(770), 1, sym_collect_query, - STATE(1002), 1, + STATE(771), 1, sym_selector, - ACTIONS(1475), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [17994] = 7, + STATE(919), 1, + sym_comment, + [18166] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(910), 1, - sym_comment, - STATE(1034), 1, - sym_lambda, - STATE(1271), 1, - sym__lambda_parameter_list, - ACTIONS(364), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 22, - sym_qmark, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1491), 1, + anon_sym_RBRACE, + ACTIONS(1493), 1, anon_sym_COMMA, + STATE(920), 1, + sym_comment, + STATE(1377), 1, + sym_attribute, + STATE(1438), 1, + sym__attribute_operations, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [18219] = 30, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [18039] = 7, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(261), 1, + sym_block, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(921), 1, + sym_comment, + [18310] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(911), 1, - sym_comment, - STATE(1035), 1, - sym_lambda, - STATE(1271), 1, - sym__lambda_parameter_list, - ACTIONS(370), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 22, - sym_qmark, - anon_sym_COMMA, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [18084] = 7, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(864), 1, + sym_block, + STATE(922), 1, + sym_comment, + [18401] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(912), 1, - sym_comment, - STATE(1053), 1, - sym_lambda, - STATE(1271), 1, - sym__lambda_parameter_list, - ACTIONS(374), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 22, - sym_qmark, - anon_sym_COMMA, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [18129] = 7, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_block, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(923), 1, + sym_comment, + [18492] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(366), 1, - anon_sym_PIPE, - STATE(913), 1, - sym_comment, - STATE(998), 1, - sym_lambda, - STATE(1271), 1, - sym__lambda_parameter_list, - ACTIONS(382), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 22, - sym_qmark, - anon_sym_COMMA, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [18174] = 30, + ACTIONS(1497), 1, + anon_sym_LBRACE, + STATE(254), 1, + sym_block, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(924), 1, + sym_comment, + [18583] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1489), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(686), 1, + STATE(642), 1, sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(914), 1, + STATE(771), 1, + sym_selector, + STATE(925), 1, sym_comment, - [18265] = 30, + [18674] = 30, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1489), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - STATE(726), 1, + STATE(76), 1, sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(915), 1, + STATE(771), 1, + sym_selector, + STATE(926), 1, sym_comment, - [18356] = 11, + [18765] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1397), 1, + ACTIONS(1389), 1, sym_name, - ACTIONS(1491), 1, + ACTIONS(1499), 1, anon_sym_RBRACE, - ACTIONS(1493), 1, + ACTIONS(1501), 1, anon_sym_COMMA, - STATE(916), 1, + STATE(927), 1, sym_comment, - STATE(1343), 1, + STATE(1377), 1, sym_attribute, - STATE(1429), 1, - sym__attribute_operations, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, + STATE(1499), 1, sym__attribute_name, - ACTIONS(241), 20, + STATE(1504), 1, + sym_keyword, + STATE(1548), 1, + sym__attribute_operations, + ACTIONS(243), 20, anon_sym_in, anon_sym_and, anon_sym_or, @@ -66479,85 +67484,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attr, anon_sym_default, anon_sym_undef, - [18409] = 30, + [18818] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, - anon_sym_GT_GT, - ACTIONS(1317), 1, - anon_sym_BANG_EQ, - ACTIONS(1319), 1, - anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, - anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, - anon_sym_LT_EQ, - ACTIONS(1329), 1, - anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, - anon_sym_or, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(917), 1, - sym_comment, - [18500] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_PIPE, - STATE(918), 1, + STATE(928), 1, sym_comment, - STATE(1133), 1, - sym_lambda, - STATE(1291), 1, - sym__lambda_parameter_list, - ACTIONS(386), 3, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 22, + ACTIONS(450), 21, sym_qmark, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -66578,107 +67521,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [18545] = 30, + [18862] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, - ACTIONS(1303), 1, - anon_sym_EQ_TILDE, - ACTIONS(1305), 1, - anon_sym_BANG_TILDE, - ACTIONS(1307), 1, - anon_sym_PLUS, - ACTIONS(1309), 1, - anon_sym_SLASH, - ACTIONS(1311), 1, - anon_sym_PERCENT, - ACTIONS(1313), 1, + STATE(929), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(452), 3, anon_sym_LT_LT, - ACTIONS(1315), 1, - anon_sym_GT_GT, - ACTIONS(1317), 1, - anon_sym_BANG_EQ, - ACTIONS(1319), 1, - anon_sym_EQ_EQ, - ACTIONS(1321), 1, anon_sym_GT, - ACTIONS(1323), 1, - anon_sym_GT_EQ, - ACTIONS(1325), 1, anon_sym_LT, - ACTIONS(1327), 1, - anon_sym_LT_EQ, - ACTIONS(1329), 1, - anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(450), 21, sym_qmark, - ACTIONS(1376), 1, - anon_sym_or, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1380), 1, - anon_sym_DOT, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1469), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_block, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(919), 1, - sym_comment, - [18636] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1497), 1, anon_sym_DASH, - ACTIONS(1499), 1, anon_sym_STAR, - ACTIONS(1501), 1, anon_sym_in, - ACTIONS(1503), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, anon_sym_PLUS, - ACTIONS(1509), 1, anon_sym_SLASH, - ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, - anon_sym_LT_LT, - ACTIONS(1515), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, anon_sym_EQ_EQ, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(920), 1, - sym_comment, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -66686,262 +67556,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [18704] = 24, + anon_sym_PIPE_GT_GT, + [18906] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, - anon_sym_STAR, - ACTIONS(1527), 1, - anon_sym_in, - ACTIONS(1529), 1, - anon_sym_EQ_TILDE, - ACTIONS(1531), 1, - anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, - anon_sym_SLASH, - ACTIONS(1537), 1, - anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, - anon_sym_GT_GT, - ACTIONS(1543), 1, - anon_sym_BANG_EQ, - ACTIONS(1545), 1, - anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, - anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, - anon_sym_LT_EQ, - ACTIONS(1555), 1, - anon_sym_and, - ACTIONS(1557), 1, + ACTIONS(1341), 1, sym_qmark, - STATE(921), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(392), 6, - anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [18782] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(922), 1, - sym_comment, - ACTIONS(396), 2, + ACTIONS(1531), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, + ACTIONS(1533), 1, anon_sym_GT_EQ, + ACTIONS(1535), 1, + anon_sym_LT, + ACTIONS(1537), 1, anon_sym_LT_EQ, + ACTIONS(1539), 1, anon_sym_and, + ACTIONS(1541), 1, anon_sym_or, - anon_sym_LBRACK, + ACTIONS(1543), 1, anon_sym_DOT, - anon_sym_LT_PIPE, + ACTIONS(1545), 1, anon_sym_PIPE_GT, - anon_sym_LT_LT_PIPE, - [18850] = 7, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(930), 1, + sym_comment, + [18994] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_LBRACE, - ACTIONS(1559), 1, - anon_sym_LBRACK, - STATE(923), 1, - sym_comment, - STATE(1125), 1, - sym_hash, - ACTIONS(486), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(484), 21, - sym_qmark, + ACTIONS(1503), 1, anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1579), 1, anon_sym_and, + ACTIONS(1581), 1, anon_sym_or, + ACTIONS(1583), 1, + anon_sym_LBRACK, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, anon_sym_LT_PIPE, + ACTIONS(1589), 1, anon_sym_LT_LT_PIPE, + ACTIONS(1591), 1, anon_sym_PIPE_GT_GT, - [18894] = 19, + ACTIONS(1593), 1, + sym_qmark, + STATE(931), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + [19082] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1547), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1557), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1563), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1565), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1567), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1569), 1, anon_sym_EQ_EQ, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(924), 1, - sym_comment, - ACTIONS(396), 2, + ACTIONS(1571), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1579), 1, anon_sym_and, + ACTIONS(1581), 1, anon_sym_or, + ACTIONS(1583), 1, anon_sym_LBRACK, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1589), 1, anon_sym_LT_LT_PIPE, - [18962] = 17, + ACTIONS(1593), 1, + sym_qmark, + ACTIONS(1595), 1, + anon_sym_PIPE_GT_GT, + STATE(932), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + [19170] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_LT_PIPE, + ACTIONS(1403), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(925), 1, - sym_comment, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 12, - sym_qmark, + ACTIONS(1527), 1, anon_sym_BANG_EQ, + ACTIONS(1529), 1, anon_sym_EQ_EQ, + ACTIONS(1531), 1, + anon_sym_GT, + ACTIONS(1533), 1, anon_sym_GT_EQ, + ACTIONS(1535), 1, + anon_sym_LT, + ACTIONS(1537), 1, anon_sym_LT_EQ, + ACTIONS(1539), 1, anon_sym_and, + ACTIONS(1541), 1, anon_sym_or, - anon_sym_LBRACK, + ACTIONS(1543), 1, anon_sym_DOT, - anon_sym_LT_PIPE, + ACTIONS(1597), 1, anon_sym_PIPE_GT, - anon_sym_LT_LT_PIPE, - [19026] = 4, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(933), 1, + sym_comment, + [19258] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(926), 1, + STATE(934), 1, sym_comment, - ACTIONS(466), 3, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(756), 4, + anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(464), 24, + ACTIONS(754), 21, sym_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -66953,292 +67827,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [19064] = 17, + [19298] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1547), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1557), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1563), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1565), 1, anon_sym_GT_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(927), 1, - sym_comment, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 12, - sym_qmark, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1579), 1, anon_sym_and, + ACTIONS(1581), 1, anon_sym_or, + ACTIONS(1583), 1, anon_sym_LBRACK, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1589), 1, anon_sym_LT_LT_PIPE, - [19128] = 15, + ACTIONS(1593), 1, + sym_qmark, + ACTIONS(1599), 1, + anon_sym_PIPE_GT_GT, + STATE(935), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + [19386] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_LT_PIPE, + ACTIONS(1403), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(928), 1, - sym_comment, - ACTIONS(396), 3, + ACTIONS(1523), 1, anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 13, - sym_qmark, + ACTIONS(1525), 1, anon_sym_GT_GT, + ACTIONS(1527), 1, anon_sym_BANG_EQ, + ACTIONS(1529), 1, anon_sym_EQ_EQ, + ACTIONS(1531), 1, + anon_sym_GT, + ACTIONS(1533), 1, anon_sym_GT_EQ, + ACTIONS(1535), 1, + anon_sym_LT, + ACTIONS(1537), 1, anon_sym_LT_EQ, + ACTIONS(1539), 1, anon_sym_and, + ACTIONS(1541), 1, anon_sym_or, - anon_sym_LBRACK, + ACTIONS(1543), 1, anon_sym_DOT, - anon_sym_LT_PIPE, + ACTIONS(1601), 1, anon_sym_PIPE_GT, - anon_sym_LT_LT_PIPE, - [19188] = 15, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(936), 1, + sym_comment, + [19474] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, - anon_sym_DASH, - ACTIONS(1499), 1, - anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, - anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1313), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1315), 1, anon_sym_PERCENT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(929), 1, - sym_comment, - ACTIONS(396), 3, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 13, - sym_qmark, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [19248] = 10, + ACTIONS(1603), 1, + anon_sym_COLON, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(937), 1, + sym_comment, + [19562] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1305), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(930), 1, - sym_comment, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 18, - sym_qmark, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - [19298] = 10, + ACTIONS(1605), 1, + anon_sym_EQ_GT, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(938), 1, + sym_comment, + [19650] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_LT_PIPE, + ACTIONS(1403), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1507), 1, + anon_sym_DASH, + ACTIONS(1509), 1, + anon_sym_STAR, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(931), 1, - sym_comment, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 18, - sym_qmark, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1517), 1, anon_sym_PLUS, + ACTIONS(1519), 1, anon_sym_SLASH, + ACTIONS(1521), 1, anon_sym_PERCENT, + ACTIONS(1523), 1, + anon_sym_LT_LT, + ACTIONS(1525), 1, anon_sym_GT_GT, + ACTIONS(1527), 1, anon_sym_BANG_EQ, + ACTIONS(1529), 1, anon_sym_EQ_EQ, + ACTIONS(1531), 1, + anon_sym_GT, + ACTIONS(1533), 1, anon_sym_GT_EQ, + ACTIONS(1535), 1, + anon_sym_LT, + ACTIONS(1537), 1, anon_sym_LT_EQ, + ACTIONS(1539), 1, anon_sym_and, + ACTIONS(1541), 1, anon_sym_or, - anon_sym_LBRACK, + ACTIONS(1543), 1, anon_sym_DOT, - anon_sym_LT_PIPE, + ACTIONS(1607), 1, anon_sym_PIPE_GT, - anon_sym_LT_LT_PIPE, - [19348] = 13, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(939), 1, + sym_comment, + [19738] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1499), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1509), 1, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(932), 1, - sym_comment, - ACTIONS(396), 3, + ACTIONS(1563), 1, anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_qmark, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1579), 1, anon_sym_and, + ACTIONS(1581), 1, anon_sym_or, + ACTIONS(1583), 1, anon_sym_LBRACK, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, + ACTIONS(1589), 1, anon_sym_LT_LT_PIPE, - [19404] = 8, + ACTIONS(1593), 1, + sym_qmark, + ACTIONS(1609), 1, + anon_sym_PIPE_GT_GT, + STATE(940), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + [19826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_in, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(933), 1, + STATE(941), 1, sym_comment, - ACTIONS(396), 3, + ACTIONS(394), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 20, + ACTIONS(392), 24, sym_qmark, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, + anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_PLUS, @@ -67253,33 +68212,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19450] = 8, + anon_sym_PIPE_GT_GT, + [19864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_in, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(934), 1, + STATE(942), 1, sym_comment, - ACTIONS(396), 3, + ACTIONS(1611), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(508), 4, + anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 20, + ACTIONS(506), 21, sym_qmark, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, + anon_sym_in, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -67292,34 +68251,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19496] = 10, + [19904] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - anon_sym_in, - ACTIONS(1503), 1, - anon_sym_EQ_TILDE, - ACTIONS(1505), 1, - anon_sym_BANG_TILDE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(935), 1, + STATE(943), 1, sym_comment, - ACTIONS(396), 3, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(752), 4, + anon_sym_PLUS, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 18, + ACTIONS(750), 21, sym_qmark, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DASH, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_GT_GT, @@ -67332,39 +68286,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19546] = 13, + [19944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + STATE(944), 1, + sym_comment, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(694), 4, + anon_sym_PLUS, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(692), 21, + sym_qmark, anon_sym_LPAREN, - ACTIONS(1499), 1, + anon_sym_COLON, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(1501), 1, anon_sym_in, - ACTIONS(1503), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, anon_sym_BANG_TILDE, - ACTIONS(1509), 1, anon_sym_SLASH, - ACTIONS(1511), 1, anon_sym_PERCENT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(936), 1, - sym_comment, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_qmark, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -67375,108 +68321,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19602] = 24, + [19984] = 24, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, + ACTIONS(1531), 1, anon_sym_GT, - ACTIONS(1563), 1, + ACTIONS(1533), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, + ACTIONS(1535), 1, anon_sym_LT, - ACTIONS(1567), 1, + ACTIONS(1537), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, + ACTIONS(1539), 1, anon_sym_and, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(937), 1, + STATE(771), 1, + sym_selector, + STATE(945), 1, sym_comment, - ACTIONS(392), 6, + ACTIONS(396), 6, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19680] = 23, + [20062] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, + ACTIONS(1531), 1, anon_sym_GT, - ACTIONS(1563), 1, + ACTIONS(1533), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, + ACTIONS(1535), 1, anon_sym_LT, - ACTIONS(1567), 1, + ACTIONS(1537), 1, anon_sym_LT_EQ, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(938), 1, + STATE(771), 1, + sym_selector, + STATE(946), 1, sym_comment, - ACTIONS(392), 7, + ACTIONS(396), 7, anon_sym_and, anon_sym_or, anon_sym_LBRACK, @@ -67484,151 +68429,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19756] = 29, + [20138] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1299), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1309), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1311), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1315), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(947), 1, + sym_comment, + ACTIONS(400), 2, anon_sym_GT, - ACTIONS(1323), 1, - anon_sym_GT_EQ, - ACTIONS(1325), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(396), 10, + sym_qmark, + anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1571), 1, - anon_sym_COLON, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(939), 1, - sym_comment, - [19844] = 29, + [20206] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, - anon_sym_GT, - ACTIONS(1563), 1, - anon_sym_GT_EQ, - ACTIONS(1565), 1, - anon_sym_LT, - ACTIONS(1567), 1, - anon_sym_LT_EQ, - ACTIONS(1569), 1, - anon_sym_and, - ACTIONS(1573), 1, - anon_sym_or, - ACTIONS(1575), 1, - anon_sym_DOT, - ACTIONS(1577), 1, - anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(940), 1, - sym_comment, - [19932] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(941), 1, + STATE(771), 1, + sym_selector, + STATE(948), 1, sym_comment, - ACTIONS(1579), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(592), 4, - anon_sym_PLUS, - anon_sym_LT_LT, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 21, + ACTIONS(396), 10, sym_qmark, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -67636,93 +68525,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [19972] = 29, + [20274] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1541), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1543), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, - anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, - anon_sym_LT_EQ, - ACTIONS(1555), 1, - anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, - anon_sym_or, - ACTIONS(1583), 1, - anon_sym_LBRACK, - ACTIONS(1585), 1, - anon_sym_DOT, - ACTIONS(1587), 1, - anon_sym_LT_PIPE, - ACTIONS(1589), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1591), 1, - anon_sym_PIPE_GT_GT, - STATE(942), 1, - sym_comment, - STATE(1084), 1, + STATE(770), 1, sym_collect_query, - STATE(1087), 1, + STATE(771), 1, sym_selector, - [20060] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(943), 1, + STATE(949), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(574), 4, - anon_sym_PLUS, - anon_sym_LT_LT, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(572), 21, + ACTIONS(396), 10, sym_qmark, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -67730,34 +68574,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [20100] = 5, + [20342] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(944), 1, - sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(570), 4, - anon_sym_PLUS, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(568), 21, - sym_qmark, + ACTIONS(1505), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_DASH, + ACTIONS(1509), 1, anon_sym_STAR, + ACTIONS(1511), 1, anon_sym_in, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, + ACTIONS(1517), 1, + anon_sym_PLUS, + ACTIONS(1519), 1, anon_sym_SLASH, + ACTIONS(1521), 1, anon_sym_PERCENT, + ACTIONS(1523), 1, + anon_sym_LT_LT, + ACTIONS(1525), 1, anon_sym_GT_GT, + ACTIONS(1527), 1, anon_sym_BANG_EQ, + ACTIONS(1529), 1, anon_sym_EQ_EQ, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(950), 1, + sym_comment, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 10, + sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -67765,71 +68623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [20140] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - STATE(945), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(1593), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [20188] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(946), 1, - sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(562), 4, - anon_sym_PLUS, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(560), 21, - sym_qmark, + anon_sym_PIPE_GT, + anon_sym_LT_LT_PIPE, + [20410] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1505), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1507), 1, anon_sym_DASH, + ACTIONS(1509), 1, anon_sym_STAR, + ACTIONS(1511), 1, anon_sym_in, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, + ACTIONS(1517), 1, + anon_sym_PLUS, + ACTIONS(1519), 1, anon_sym_SLASH, + ACTIONS(1521), 1, anon_sym_PERCENT, + ACTIONS(1523), 1, + anon_sym_LT_LT, + ACTIONS(1525), 1, anon_sym_GT_GT, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(951), 1, + sym_comment, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 12, + sym_qmark, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -67839,706 +68670,659 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [20228] = 29, + [20474] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(952), 1, + sym_comment, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 12, + sym_qmark, anon_sym_BANG_EQ, - ACTIONS(1519), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, - anon_sym_GT, - ACTIONS(1563), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, - anon_sym_LT, - ACTIONS(1567), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, anon_sym_and, - ACTIONS(1573), 1, anon_sym_or, - ACTIONS(1575), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1595), 1, + anon_sym_LT_PIPE, anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(947), 1, - sym_comment, - [20316] = 29, + anon_sym_LT_LT_PIPE, + [20538] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(953), 1, + sym_comment, + ACTIONS(400), 3, anon_sym_LT_LT, - ACTIONS(1541), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 13, + sym_qmark, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1555), 1, anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1589), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1597), 1, - anon_sym_PIPE_GT_GT, - STATE(948), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - [20404] = 29, + [20598] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(954), 1, + sym_comment, + ACTIONS(400), 3, anon_sym_LT_LT, - ACTIONS(1515), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 13, + sym_qmark, anon_sym_GT_GT, - ACTIONS(1517), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, - anon_sym_GT, - ACTIONS(1563), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, - anon_sym_LT, - ACTIONS(1567), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, anon_sym_and, - ACTIONS(1573), 1, anon_sym_or, - ACTIONS(1575), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1599), 1, + anon_sym_LT_PIPE, anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(949), 1, - sym_comment, - [20492] = 29, + anon_sym_LT_LT_PIPE, + [20658] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, - anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(955), 1, + sym_comment, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 18, + sym_qmark, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1555), 1, anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1589), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1601), 1, - anon_sym_PIPE_GT_GT, - STATE(950), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - [20580] = 29, + [20708] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(956), 1, + sym_comment, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 18, + sym_qmark, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(951), 1, - sym_comment, - [20668] = 29, + [20758] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(957), 1, + sym_comment, + ACTIONS(400), 3, anon_sym_LT_LT, - ACTIONS(1541), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 15, + sym_qmark, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1555), 1, anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1589), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1605), 1, - anon_sym_PIPE_GT_GT, - STATE(952), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - [20756] = 29, + [20814] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(1511), 1, + anon_sym_in, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(958), 1, + sym_comment, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 20, sym_qmark, - ACTIONS(1378), 1, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, anon_sym_LBRACK, - ACTIONS(1382), 1, + anon_sym_DOT, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + [20860] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1511), 1, + anon_sym_in, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(959), 1, + sym_comment, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 20, + sym_qmark, anon_sym_DASH, - ACTIONS(1499), 1, anon_sym_STAR, - ACTIONS(1501), 1, - anon_sym_in, - ACTIONS(1503), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, anon_sym_PLUS, - ACTIONS(1509), 1, anon_sym_SLASH, - ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, - anon_sym_LT_LT, - ACTIONS(1515), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, - anon_sym_GT, - ACTIONS(1563), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, - anon_sym_LT, - ACTIONS(1567), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, anon_sym_and, - ACTIONS(1573), 1, anon_sym_or, - ACTIONS(1575), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1607), 1, + anon_sym_LT_PIPE, anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(953), 1, - sym_comment, - [20844] = 29, + anon_sym_LT_LT_PIPE, + [20906] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, - anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(960), 1, + sym_comment, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 18, + sym_qmark, + anon_sym_DASH, + anon_sym_STAR, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1555), 1, anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1589), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1609), 1, - anon_sym_PIPE_GT_GT, - STATE(954), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - [20932] = 29, + [20956] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(961), 1, + sym_comment, + ACTIONS(400), 3, anon_sym_LT_LT, - ACTIONS(1541), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 15, + sym_qmark, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1555), 1, anon_sym_and, - ACTIONS(1557), 1, - sym_qmark, - ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1589), 1, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1611), 1, - anon_sym_PIPE_GT_GT, - STATE(955), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - [21020] = 29, + [21012] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1507), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1509), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1511), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1517), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1519), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1521), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1523), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1525), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1527), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1529), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, + ACTIONS(1531), 1, anon_sym_GT, - ACTIONS(1563), 1, + ACTIONS(1533), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, + ACTIONS(1535), 1, anon_sym_LT, - ACTIONS(1567), 1, + ACTIONS(1537), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, + ACTIONS(1539), 1, anon_sym_and, - ACTIONS(1573), 1, + ACTIONS(1541), 1, anon_sym_or, - ACTIONS(1575), 1, + ACTIONS(1543), 1, anon_sym_DOT, ACTIONS(1613), 1, anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(956), 1, + STATE(771), 1, + sym_selector, + STATE(962), 1, sym_comment, - [21108] = 29, + [21100] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1378), 1, - anon_sym_LBRACK, - ACTIONS(1382), 1, - anon_sym_LT_PIPE, - ACTIONS(1384), 1, - anon_sym_LT_LT_PIPE, - ACTIONS(1495), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1497), 1, + ACTIONS(1547), 1, anon_sym_DASH, - ACTIONS(1499), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1501), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1503), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, + ACTIONS(1557), 1, anon_sym_PLUS, - ACTIONS(1509), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1511), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, + ACTIONS(1563), 1, anon_sym_LT_LT, - ACTIONS(1515), 1, + ACTIONS(1565), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, + ACTIONS(1567), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, + ACTIONS(1569), 1, anon_sym_EQ_EQ, - ACTIONS(1561), 1, + ACTIONS(1571), 1, anon_sym_GT, - ACTIONS(1563), 1, + ACTIONS(1573), 1, anon_sym_GT_EQ, - ACTIONS(1565), 1, + ACTIONS(1575), 1, anon_sym_LT, - ACTIONS(1567), 1, + ACTIONS(1577), 1, anon_sym_LT_EQ, - ACTIONS(1569), 1, + ACTIONS(1579), 1, anon_sym_and, - ACTIONS(1573), 1, + ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1575), 1, + ACTIONS(1583), 1, + anon_sym_LBRACK, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_LT_PIPE, + ACTIONS(1589), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1593), 1, + sym_qmark, ACTIONS(1615), 1, - anon_sym_PIPE_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(957), 1, + anon_sym_PIPE_GT_GT, + STATE(963), 1, sym_comment, - [21196] = 4, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + [21188] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(958), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + STATE(964), 1, sym_comment, - ACTIONS(470), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(468), 24, - sym_qmark, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(1617), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [21236] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(454), 1, + anon_sym_LBRACE, + ACTIONS(1303), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1305), 1, anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, anon_sym_EQ_TILDE, + ACTIONS(1311), 1, anon_sym_BANG_TILDE, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_SLASH, + ACTIONS(1315), 1, anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, + ACTIONS(1327), 1, anon_sym_BANG_EQ, + ACTIONS(1329), 1, anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, anon_sym_LT_EQ, + ACTIONS(1339), 1, anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, anon_sym_or, + ACTIONS(1397), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, anon_sym_DOT, - anon_sym_elsif, - anon_sym_else, + ACTIONS(1401), 1, anon_sym_LT_PIPE, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [21234] = 7, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(965), 1, + sym_comment, + [21324] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(959), 1, + STATE(771), 1, + sym_selector, + STATE(966), 1, sym_comment, - ACTIONS(434), 3, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 21, + ACTIONS(450), 21, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -68560,22 +69344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [21278] = 7, + [21368] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(960), 1, + STATE(771), 1, + sym_selector, + STATE(967), 1, sym_comment, - ACTIONS(434), 3, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 21, + ACTIONS(450), 21, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -68597,22 +69381,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [21322] = 7, + [21412] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(961), 1, + STATE(771), 1, + sym_selector, + STATE(968), 1, sym_comment, - ACTIONS(434), 3, + ACTIONS(452), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 21, + ACTIONS(450), 21, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -68634,22 +69418,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [21366] = 7, + [21456] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + ACTIONS(1505), 1, anon_sym_LPAREN, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(962), 1, + STATE(771), 1, + sym_selector, + STATE(969), 1, sym_comment, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 21, + ACTIONS(396), 21, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -68671,119 +69455,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [21410] = 29, + [21500] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + ACTIONS(1547), 1, anon_sym_DASH, - ACTIONS(1299), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1301), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1303), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, + ACTIONS(1557), 1, anon_sym_PLUS, - ACTIONS(1309), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1311), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, + ACTIONS(1563), 1, anon_sym_LT_LT, - ACTIONS(1315), 1, + ACTIONS(1565), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1567), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1569), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1571), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1573), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1575), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1577), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1579), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1581), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1583), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1587), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1589), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1617), 1, - anon_sym_EQ_GT, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(963), 1, - sym_comment, - [21498] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(964), 1, + ACTIONS(1593), 1, + sym_qmark, + ACTIONS(1619), 1, + anon_sym_PIPE_GT_GT, + STATE(970), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(434), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 21, + [21588] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1341), 1, sym_qmark, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_LT_PIPE, + ACTIONS(1403), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1505), 1, + anon_sym_LPAREN, + ACTIONS(1507), 1, anon_sym_DASH, + ACTIONS(1509), 1, anon_sym_STAR, + ACTIONS(1511), 1, anon_sym_in, + ACTIONS(1513), 1, anon_sym_EQ_TILDE, + ACTIONS(1515), 1, anon_sym_BANG_TILDE, + ACTIONS(1517), 1, anon_sym_PLUS, + ACTIONS(1519), 1, anon_sym_SLASH, + ACTIONS(1521), 1, anon_sym_PERCENT, + ACTIONS(1523), 1, + anon_sym_LT_LT, + ACTIONS(1525), 1, anon_sym_GT_GT, + ACTIONS(1527), 1, anon_sym_BANG_EQ, + ACTIONS(1529), 1, anon_sym_EQ_EQ, + ACTIONS(1531), 1, + anon_sym_GT, + ACTIONS(1533), 1, anon_sym_GT_EQ, + ACTIONS(1535), 1, + anon_sym_LT, + ACTIONS(1537), 1, anon_sym_LT_EQ, + ACTIONS(1539), 1, anon_sym_and, + ACTIONS(1541), 1, anon_sym_or, - anon_sym_LBRACK, + ACTIONS(1543), 1, anon_sym_DOT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [21542] = 7, + ACTIONS(1621), 1, + anon_sym_PIPE_GT, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(971), 1, + sym_comment, + [21676] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(965), 1, + ACTIONS(907), 1, + anon_sym_LBRACE, + ACTIONS(1623), 1, + anon_sym_LBRACK, + STATE(972), 1, sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(434), 3, + STATE(1136), 1, + sym_hash, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 21, + ACTIONS(492), 21, sym_qmark, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -68799,87 +69606,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [21586] = 29, + [21720] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1619), 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(966), 1, + STATE(771), 1, + sym_selector, + STATE(973), 1, sym_comment, - [21674] = 7, + [21808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(967), 1, + STATE(974), 1, sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(434), 3, + ACTIONS(410), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 21, + ACTIONS(408), 24, sym_qmark, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -68897,314 +69698,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [21718] = 29, + [21846] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_in, + ACTIONS(1307), 1, + anon_sym_STAR, + ACTIONS(1309), 1, + anon_sym_EQ_TILDE, + ACTIONS(1311), 1, + anon_sym_BANG_TILDE, + ACTIONS(1313), 1, + anon_sym_SLASH, + ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, + anon_sym_GT_GT, + ACTIONS(1327), 1, + anon_sym_BANG_EQ, + ACTIONS(1329), 1, + anon_sym_EQ_EQ, + ACTIONS(1331), 1, + anon_sym_GT, + ACTIONS(1333), 1, + anon_sym_GT_EQ, + ACTIONS(1335), 1, + anon_sym_LT, + ACTIONS(1337), 1, + anon_sym_LT_EQ, + ACTIONS(1339), 1, + anon_sym_and, + ACTIONS(1341), 1, + sym_qmark, + ACTIONS(1395), 1, + anon_sym_or, + ACTIONS(1397), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_DOT, + ACTIONS(1401), 1, + anon_sym_LT_PIPE, + ACTIONS(1403), 1, + anon_sym_LT_LT_PIPE, + ACTIONS(1627), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_collect_query, + STATE(771), 1, + sym_selector, + STATE(975), 1, + sym_comment, + [21934] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1621), 1, + ACTIONS(1629), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(968), 1, + STATE(771), 1, + sym_selector, + STATE(976), 1, sym_comment, - [21806] = 29, + [22022] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1623), 1, + ACTIONS(1631), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(969), 1, + STATE(771), 1, + sym_selector, + STATE(977), 1, sym_comment, - [21894] = 29, + [22110] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1625), 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + STATE(770), 1, sym_collect_query, - STATE(970), 1, + STATE(771), 1, + sym_selector, + STATE(978), 1, sym_comment, - [21982] = 29, + [22198] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1297), 1, + STATE(979), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(452), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 21, + sym_qmark, anon_sym_DASH, - ACTIONS(1299), 1, anon_sym_STAR, - ACTIONS(1301), 1, anon_sym_in, - ACTIONS(1303), 1, anon_sym_EQ_TILDE, - ACTIONS(1305), 1, anon_sym_BANG_TILDE, - ACTIONS(1307), 1, anon_sym_PLUS, - ACTIONS(1309), 1, anon_sym_SLASH, - ACTIONS(1311), 1, anon_sym_PERCENT, - ACTIONS(1313), 1, - anon_sym_LT_LT, - ACTIONS(1315), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, - anon_sym_GT, - ACTIONS(1323), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, - anon_sym_LT, - ACTIONS(1327), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, anon_sym_and, - ACTIONS(1331), 1, - sym_qmark, - ACTIONS(1376), 1, anon_sym_or, - ACTIONS(1378), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1382), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, anon_sym_LT_LT_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(971), 1, - sym_comment, - [22070] = 29, + anon_sym_PIPE_GT_GT, + [22242] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(450), 1, - anon_sym_LBRACE, - ACTIONS(1295), 1, - anon_sym_LPAREN, - ACTIONS(1297), 1, - anon_sym_DASH, - ACTIONS(1299), 1, - anon_sym_STAR, - ACTIONS(1301), 1, - anon_sym_in, ACTIONS(1303), 1, - anon_sym_EQ_TILDE, + anon_sym_LPAREN, ACTIONS(1305), 1, - anon_sym_BANG_TILDE, + anon_sym_in, ACTIONS(1307), 1, - anon_sym_PLUS, + anon_sym_STAR, ACTIONS(1309), 1, - anon_sym_SLASH, + anon_sym_EQ_TILDE, ACTIONS(1311), 1, - anon_sym_PERCENT, + anon_sym_BANG_TILDE, ACTIONS(1313), 1, - anon_sym_LT_LT, + anon_sym_SLASH, ACTIONS(1315), 1, + anon_sym_PERCENT, + ACTIONS(1319), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + anon_sym_PLUS, + ACTIONS(1323), 1, + anon_sym_LT_LT, + ACTIONS(1325), 1, anon_sym_GT_GT, - ACTIONS(1317), 1, + ACTIONS(1327), 1, anon_sym_BANG_EQ, - ACTIONS(1319), 1, + ACTIONS(1329), 1, anon_sym_EQ_EQ, - ACTIONS(1321), 1, + ACTIONS(1331), 1, anon_sym_GT, - ACTIONS(1323), 1, + ACTIONS(1333), 1, anon_sym_GT_EQ, - ACTIONS(1325), 1, + ACTIONS(1335), 1, anon_sym_LT, - ACTIONS(1327), 1, + ACTIONS(1337), 1, anon_sym_LT_EQ, - ACTIONS(1329), 1, + ACTIONS(1339), 1, anon_sym_and, - ACTIONS(1331), 1, + ACTIONS(1341), 1, sym_qmark, - ACTIONS(1376), 1, + ACTIONS(1395), 1, anon_sym_or, - ACTIONS(1378), 1, + ACTIONS(1397), 1, anon_sym_LBRACK, - ACTIONS(1380), 1, + ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1382), 1, + ACTIONS(1401), 1, anon_sym_LT_PIPE, - ACTIONS(1384), 1, + ACTIONS(1403), 1, anon_sym_LT_LT_PIPE, - STATE(765), 1, - sym_selector, - STATE(766), 1, + ACTIONS(1635), 1, + anon_sym_LBRACE, + STATE(770), 1, sym_collect_query, - STATE(972), 1, + STATE(771), 1, + sym_selector, + STATE(980), 1, sym_comment, - [22158] = 4, + [22330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(973), 1, + STATE(981), 1, sym_comment, - ACTIONS(438), 3, + ACTIONS(470), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 24, + ACTIONS(468), 24, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -69229,16 +70069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22196] = 4, + [22368] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(974), 1, + STATE(982), 1, sym_comment, - ACTIONS(442), 3, + ACTIONS(444), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(440), 24, + ACTIONS(442), 24, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -69263,14 +70103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22234] = 6, + [22406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1363), 1, + ACTIONS(1371), 1, anon_sym_else, - STATE(975), 1, + STATE(983), 1, sym_comment, - STATE(1097), 1, + STATE(1095), 1, sym_else, ACTIONS(448), 3, anon_sym_LT_LT, @@ -69299,148 +70139,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22276] = 19, + [22448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1495), 1, + STATE(984), 1, + sym_comment, + ACTIONS(674), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(672), 24, + sym_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1497), 1, anon_sym_DASH, - ACTIONS(1499), 1, anon_sym_STAR, - ACTIONS(1501), 1, anon_sym_in, - ACTIONS(1503), 1, anon_sym_EQ_TILDE, - ACTIONS(1505), 1, anon_sym_BANG_TILDE, - ACTIONS(1507), 1, anon_sym_PLUS, - ACTIONS(1509), 1, anon_sym_SLASH, - ACTIONS(1511), 1, anon_sym_PERCENT, - ACTIONS(1513), 1, - anon_sym_LT_LT, - ACTIONS(1515), 1, anon_sym_GT_GT, - ACTIONS(1517), 1, anon_sym_BANG_EQ, - ACTIONS(1519), 1, anon_sym_EQ_EQ, - STATE(765), 1, - sym_selector, - STATE(766), 1, - sym_collect_query, - STATE(976), 1, - sym_comment, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [22344] = 23, + [22486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + STATE(985), 1, + sym_comment, + ACTIONS(674), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(672), 24, + sym_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1523), 1, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - ACTIONS(1547), 1, - anon_sym_GT, - ACTIONS(1549), 1, anon_sym_GT_EQ, - ACTIONS(1551), 1, - anon_sym_LT, - ACTIONS(1553), 1, anon_sym_LT_EQ, - ACTIONS(1557), 1, - sym_qmark, - STATE(977), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(392), 7, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [22420] = 19, + [22524] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, - anon_sym_GT_GT, - ACTIONS(1543), 1, - anon_sym_BANG_EQ, - ACTIONS(1545), 1, - anon_sym_EQ_EQ, - STATE(978), 1, + STATE(986), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 2, + ACTIONS(400), 3, + anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 10, + ACTIONS(396), 15, sym_qmark, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -69450,124 +70250,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22488] = 19, + [22580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1637), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym_comment, + ACTIONS(638), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(634), 23, + sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1523), 1, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - ACTIONS(1543), 1, anon_sym_BANG_EQ, - ACTIONS(1545), 1, anon_sym_EQ_EQ, - STATE(979), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [22556] = 19, + [22620] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, - anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, - anon_sym_SLASH, - ACTIONS(1537), 1, - anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, - anon_sym_GT_GT, - ACTIONS(1543), 1, - anon_sym_BANG_EQ, - ACTIONS(1545), 1, - anon_sym_EQ_EQ, - STATE(980), 1, + STATE(988), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [22624] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_comment, - ACTIONS(760), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(756), 23, + ACTIONS(396), 18, sym_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -69580,94 +70322,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [22664] = 19, + anon_sym_PIPE_GT_GT, + [22670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + STATE(989), 1, + sym_comment, + ACTIONS(666), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(664), 24, + sym_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1523), 1, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, - anon_sym_SLASH, - ACTIONS(1537), 1, - anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, - anon_sym_GT_GT, - ACTIONS(1543), 1, - anon_sym_BANG_EQ, - ACTIONS(1545), 1, - anon_sym_EQ_EQ, - STATE(982), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 10, - sym_qmark, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [22732] = 17, + [22708] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1551), 1, + anon_sym_in, + STATE(990), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 20, + sym_qmark, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, - anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - STATE(983), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 12, - sym_qmark, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -69679,42 +70397,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22796] = 17, + [22754] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1551), 1, + anon_sym_in, + STATE(991), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 20, + sym_qmark, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, - anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - ACTIONS(1539), 1, - anon_sym_LT_LT, - ACTIONS(1541), 1, anon_sym_GT_GT, - STATE(984), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 12, - sym_qmark, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -69726,39 +70435,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22860] = 15, + [22800] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_DASH, - ACTIONS(1525), 1, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, - anon_sym_PLUS, - ACTIONS(1535), 1, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - STATE(985), 1, + STATE(992), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 13, + ACTIONS(396), 15, sym_qmark, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -69771,39 +70478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22920] = 15, + [22856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + STATE(993), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 21, + sym_qmark, anon_sym_DASH, - ACTIONS(1525), 1, anon_sym_STAR, - ACTIONS(1527), 1, anon_sym_in, - ACTIONS(1529), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, anon_sym_BANG_TILDE, - ACTIONS(1533), 1, anon_sym_PLUS, - ACTIONS(1535), 1, anon_sym_SLASH, - ACTIONS(1537), 1, anon_sym_PERCENT, - STATE(986), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 13, - sym_qmark, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -69816,28 +70515,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [22980] = 10, + [22900] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - STATE(987), 1, + STATE(994), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 18, + ACTIONS(396), 18, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -69856,28 +70555,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23030] = 10, + [22950] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - STATE(988), 1, + STATE(995), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 18, + ACTIONS(396), 18, sym_qmark, anon_sym_DASH, anon_sym_STAR, @@ -69896,37 +70595,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23080] = 13, + [23000] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1525), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1535), 1, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - STATE(989), 1, + STATE(996), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(396), 13, sym_qmark, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -69939,37 +70640,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23136] = 13, + [23060] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1525), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, - ACTIONS(1527), 1, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - ACTIONS(1535), 1, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, - ACTIONS(1537), 1, + ACTIONS(1561), 1, anon_sym_PERCENT, - STATE(990), 1, + STATE(997), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, + ACTIONS(400), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(396), 13, sym_qmark, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_GT_GT, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -69982,33 +70685,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23192] = 8, + [23120] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, + anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, - STATE(991), 1, + ACTIONS(1553), 1, + anon_sym_EQ_TILDE, + ACTIONS(1555), 1, + anon_sym_BANG_TILDE, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(1559), 1, + anon_sym_SLASH, + ACTIONS(1561), 1, + anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, + anon_sym_GT_GT, + STATE(998), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, - anon_sym_LT_LT, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 20, + ACTIONS(396), 12, sym_qmark, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + anon_sym_PIPE_GT_GT, + [23184] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1503), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, + anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + STATE(999), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 12, + sym_qmark, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_GT_EQ, @@ -70020,68 +70779,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23238] = 4, + [23248] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(992), 1, - sym_comment, - ACTIONS(648), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(646), 24, - sym_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1503), 1, anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + STATE(1000), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 10, + sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23276] = 7, + anon_sym_PIPE_GT_GT, + [23316] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - STATE(993), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 21, - sym_qmark, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + STATE(1001), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 10, + sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -70091,35 +70877,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23320] = 8, + [23384] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, + anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, - STATE(994), 1, + ACTIONS(1553), 1, + anon_sym_EQ_TILDE, + ACTIONS(1555), 1, + anon_sym_BANG_TILDE, + ACTIONS(1557), 1, + anon_sym_PLUS, + ACTIONS(1559), 1, + anon_sym_SLASH, + ACTIONS(1561), 1, + anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, + anon_sym_GT_GT, + ACTIONS(1567), 1, + anon_sym_BANG_EQ, + ACTIONS(1569), 1, + anon_sym_EQ_EQ, + STATE(1002), 1, sym_comment, - STATE(1084), 1, + STATE(1094), 1, sym_collect_query, - STATE(1087), 1, + STATE(1097), 1, sym_selector, - ACTIONS(396), 3, - anon_sym_LT_LT, + ACTIONS(400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 20, + ACTIONS(396), 10, sym_qmark, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + anon_sym_PIPE_GT_GT, + [23452] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1503), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, + anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + STATE(1003), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 10, + sym_qmark, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_and, @@ -70129,92 +70975,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23366] = 4, + [23520] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(995), 1, - sym_comment, - ACTIONS(506), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(504), 24, - sym_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1503), 1, anon_sym_LPAREN, + ACTIONS(1547), 1, anon_sym_DASH, + ACTIONS(1549), 1, anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1593), 1, + sym_qmark, + STATE(1004), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(396), 7, anon_sym_and, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23404] = 10, + anon_sym_PIPE_GT_GT, + [23596] = 24, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, + ACTIONS(1503), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1547), 1, + anon_sym_DASH, + ACTIONS(1549), 1, + anon_sym_STAR, + ACTIONS(1551), 1, anon_sym_in, - ACTIONS(1529), 1, + ACTIONS(1553), 1, anon_sym_EQ_TILDE, - ACTIONS(1531), 1, + ACTIONS(1555), 1, anon_sym_BANG_TILDE, - STATE(996), 1, - sym_comment, - STATE(1084), 1, - sym_collect_query, - STATE(1087), 1, - sym_selector, - ACTIONS(396), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 18, - sym_qmark, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(1557), 1, anon_sym_PLUS, + ACTIONS(1559), 1, anon_sym_SLASH, + ACTIONS(1561), 1, anon_sym_PERCENT, + ACTIONS(1563), 1, + anon_sym_LT_LT, + ACTIONS(1565), 1, anon_sym_GT_GT, + ACTIONS(1567), 1, anon_sym_BANG_EQ, + ACTIONS(1569), 1, anon_sym_EQ_EQ, + ACTIONS(1571), 1, + anon_sym_GT, + ACTIONS(1573), 1, anon_sym_GT_EQ, + ACTIONS(1575), 1, + anon_sym_LT, + ACTIONS(1577), 1, anon_sym_LT_EQ, + ACTIONS(1579), 1, anon_sym_and, + ACTIONS(1593), 1, + sym_qmark, + STATE(1005), 1, + sym_comment, + STATE(1094), 1, + sym_collect_query, + STATE(1097), 1, + sym_selector, + ACTIONS(396), 6, anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23454] = 4, + [23674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(997), 1, + STATE(1006), 1, sym_comment, - ACTIONS(506), 3, + ACTIONS(752), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 24, + ACTIONS(750), 23, sym_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, @@ -70237,16 +71115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23492] = 4, + [23711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(998), 1, + STATE(1007), 1, sym_comment, - ACTIONS(722), 3, + ACTIONS(760), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(720), 23, + ACTIONS(758), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70270,20 +71148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23529] = 5, + [23748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - anon_sym_LPAREN, - STATE(999), 1, + STATE(1008), 1, sym_comment, - ACTIONS(494), 4, + ACTIONS(666), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(490), 21, + ACTIONS(664), 23, sym_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -70304,51 +71181,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [23568] = 4, + [23785] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1000), 1, - sym_comment, - ACTIONS(506), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(504), 23, - sym_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH, + ACTIONS(1387), 1, anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1639), 1, + anon_sym_RBRACE, + STATE(1009), 1, + sym_comment, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [23605] = 4, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [23832] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1001), 1, + STATE(1010), 1, sym_comment, - ACTIONS(742), 3, + ACTIONS(486), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(740), 23, + anon_sym_PIPE, + ACTIONS(484), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70367,19 +71249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [23642] = 4, + [23869] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1002), 1, + STATE(1011), 1, sym_comment, - ACTIONS(750), 3, + ACTIONS(632), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(748), 23, + ACTIONS(630), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70403,49 +71285,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23679] = 4, + [23906] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1003), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1641), 1, + anon_sym_RBRACE, + STATE(1012), 1, sym_comment, - ACTIONS(754), 3, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(752), 23, - sym_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DASH, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [23953] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1387), 1, anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1643), 1, + anon_sym_RBRACE, + STATE(1013), 1, + sym_comment, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_LT_PIPE, - anon_sym_LT_LT_PIPE, - [23716] = 4, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [24000] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1004), 1, + STATE(1014), 1, sym_comment, - ACTIONS(586), 3, + ACTIONS(608), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(584), 23, + ACTIONS(606), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70469,16 +71394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23753] = 4, + [24037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1005), 1, + STATE(1015), 1, sym_comment, - ACTIONS(514), 3, + ACTIONS(588), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 23, + ACTIONS(586), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70502,18 +71427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23790] = 4, + [24074] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1006), 1, + STATE(1016), 1, sym_comment, - ACTIONS(506), 3, + ACTIONS(580), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(504), 23, + ACTIONS(578), 23, sym_qmark, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70532,19 +71457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [23827] = 4, + [24111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1007), 1, + STATE(1017), 1, sym_comment, - ACTIONS(522), 3, + ACTIONS(572), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(520), 23, + ACTIONS(570), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70568,16 +71493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23864] = 4, + [24148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1008), 1, + STATE(1018), 1, sym_comment, - ACTIONS(530), 3, + ACTIONS(556), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(528), 23, + ACTIONS(554), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70601,16 +71526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23901] = 4, + [24185] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1009), 1, + STATE(1019), 1, sym_comment, - ACTIONS(554), 3, + ACTIONS(548), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(552), 23, + ACTIONS(546), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70634,16 +71559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23938] = 4, + [24222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1010), 1, + STATE(1020), 1, sym_comment, - ACTIONS(566), 3, + ACTIONS(694), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(564), 23, + ACTIONS(692), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70667,18 +71592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [23975] = 4, + [24259] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1011), 1, + STATE(1021), 1, sym_comment, - ACTIONS(578), 3, + ACTIONS(500), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(576), 23, + anon_sym_PIPE, + ACTIONS(498), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70697,19 +71622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [24012] = 4, + [24296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1012), 1, + STATE(1022), 1, sym_comment, - ACTIONS(596), 3, + ACTIONS(528), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(594), 23, + ACTIONS(526), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -70733,56 +71658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24049] = 9, + [24333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1633), 1, - anon_sym_RBRACE, - STATE(1013), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [24096] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1014), 1, + STATE(1023), 1, sym_comment, - ACTIONS(616), 3, + ACTIONS(500), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(614), 23, + anon_sym_PIPE, + ACTIONS(498), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70801,21 +71688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24133] = 4, + anon_sym_PIPE_GT_GT, + [24370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1015), 1, + STATE(1024), 1, sym_comment, - ACTIONS(648), 3, + ACTIONS(500), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(646), 23, + anon_sym_PIPE, + ACTIONS(498), 22, sym_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70837,18 +71724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [24170] = 4, + [24407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1016), 1, + STATE(1025), 1, sym_comment, - ACTIONS(474), 4, + ACTIONS(524), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(472), 22, + ACTIONS(522), 23, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70867,21 +71754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [24207] = 4, + [24444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1017), 1, + STATE(1026), 1, sym_comment, - ACTIONS(474), 4, + ACTIONS(624), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(472), 22, + ACTIONS(622), 23, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -70900,20 +71787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [24244] = 4, + [24481] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1018), 1, + STATE(1027), 1, sym_comment, - ACTIONS(474), 4, + ACTIONS(486), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(472), 22, + ACTIONS(484), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -70936,19 +71823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [24281] = 4, + [24518] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1019), 1, + ACTIONS(1645), 1, + anon_sym_LPAREN, + STATE(1028), 1, sym_comment, - ACTIONS(474), 4, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(472), 22, + ACTIONS(506), 22, sym_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -70966,19 +71854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [24318] = 4, + [24557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1020), 1, + STATE(1029), 1, sym_comment, - ACTIONS(604), 3, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(602), 23, + ACTIONS(492), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71002,18 +71890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24355] = 4, + [24594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1021), 1, + STATE(1030), 1, sym_comment, - ACTIONS(482), 4, + ACTIONS(532), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(480), 22, + ACTIONS(530), 23, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -71032,19 +71920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [24392] = 4, + [24631] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1022), 1, + STATE(1031), 1, sym_comment, - ACTIONS(486), 3, + ACTIONS(616), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 23, + ACTIONS(614), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71068,16 +71956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24429] = 4, + [24668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1023), 1, + STATE(1032), 1, sym_comment, - ACTIONS(582), 3, + ACTIONS(646), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(580), 23, + ACTIONS(644), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71101,10 +71989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24466] = 4, + [24705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1024), 1, + STATE(1033), 1, sym_comment, ACTIONS(305), 3, anon_sym_LT_LT, @@ -71134,49 +72022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24503] = 4, + [24742] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1025), 1, - sym_comment, - ACTIONS(478), 4, - anon_sym_LT_LT, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - ACTIONS(476), 22, - sym_qmark, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_GT_GT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_LT_PIPE, - anon_sym_PIPE_GT, - anon_sym_LT_LT_PIPE, - [24540] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1026), 1, + STATE(1034), 1, sym_comment, - ACTIONS(558), 3, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(556), 23, + ACTIONS(506), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71200,16 +72055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24577] = 4, + [24779] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1027), 1, + STATE(1035), 1, sym_comment, - ACTIONS(550), 3, + ACTIONS(520), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(548), 23, + ACTIONS(518), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71233,16 +72088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24614] = 4, + [24816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1028), 1, + STATE(1036), 1, sym_comment, - ACTIONS(546), 3, + ACTIONS(512), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(544), 23, + ACTIONS(510), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71266,16 +72121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24651] = 4, + [24853] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1029), 1, + STATE(1037), 1, sym_comment, - ACTIONS(542), 3, + ACTIONS(706), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(540), 23, + ACTIONS(704), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71299,16 +72154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24688] = 4, + [24890] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1030), 1, + STATE(1038), 1, sym_comment, - ACTIONS(538), 3, + ACTIONS(628), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(536), 23, + ACTIONS(626), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71332,16 +72187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24725] = 4, + [24927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1031), 1, + STATE(1039), 1, sym_comment, - ACTIONS(534), 3, + ACTIONS(662), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(532), 23, + ACTIONS(660), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71365,54 +72220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24762] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1635), 1, - anon_sym_RBRACE, - STATE(1032), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [24809] = 4, + [24964] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1033), 1, + STATE(1040), 1, sym_comment, - ACTIONS(518), 3, + ACTIONS(698), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(516), 23, + ACTIONS(696), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71436,16 +72253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24846] = 4, + [25001] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1034), 1, + STATE(1041), 1, sym_comment, - ACTIONS(374), 3, + ACTIONS(730), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 23, + ACTIONS(728), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71469,16 +72286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24883] = 4, + [25038] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1035), 1, + STATE(1042), 1, sym_comment, - ACTIONS(382), 3, + ACTIONS(718), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 23, + ACTIONS(716), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71502,54 +72319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [24920] = 9, + [25075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1637), 1, - anon_sym_RBRACE, - STATE(1036), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [24967] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1037), 1, + STATE(1043), 1, sym_comment, - ACTIONS(510), 3, + ACTIONS(390), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(508), 23, + ACTIONS(388), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71573,16 +72352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25004] = 4, + [25112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1038), 1, + STATE(1044), 1, sym_comment, - ACTIONS(608), 3, + ACTIONS(596), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(606), 23, + ACTIONS(594), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71606,16 +72385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25041] = 4, + [25149] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1039), 1, + STATE(1045), 1, sym_comment, - ACTIONS(612), 3, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(610), 23, + ACTIONS(380), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71639,18 +72418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25078] = 4, + [25186] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1040), 1, + STATE(1046), 1, sym_comment, - ACTIONS(478), 4, + ACTIONS(584), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(476), 22, + ACTIONS(582), 23, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -71669,19 +72448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [25115] = 4, + [25223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1041), 1, + STATE(1047), 1, sym_comment, - ACTIONS(628), 3, + ACTIONS(682), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(626), 23, + ACTIONS(680), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71705,57 +72484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25152] = 9, + [25260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1639), 1, - anon_sym_RBRACE, - STATE(1042), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [25199] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1043), 1, + ACTIONS(1647), 1, + anon_sym_LPAREN, + STATE(1048), 1, sym_comment, - ACTIONS(636), 3, + ACTIONS(476), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(634), 23, + anon_sym_PIPE, + ACTIONS(472), 21, sym_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -71773,19 +72515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25236] = 4, + anon_sym_PIPE_GT_GT, + [25299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1044), 1, + STATE(1049), 1, sym_comment, - ACTIONS(640), 3, + ACTIONS(592), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(638), 23, + ACTIONS(590), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71809,54 +72551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25273] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1641), 1, - anon_sym_RBRACE, - STATE(1045), 1, - sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [25320] = 4, + [25336] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1046), 1, + STATE(1050), 1, sym_comment, - ACTIONS(656), 3, + ACTIONS(670), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(654), 23, + ACTIONS(668), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71880,16 +72584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25357] = 4, + [25373] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1047), 1, + STATE(1051), 1, sym_comment, - ACTIONS(660), 3, + ACTIONS(658), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(658), 23, + ACTIONS(656), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71913,18 +72617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25394] = 4, + [25410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1048), 1, + STATE(1052), 1, sym_comment, - ACTIONS(664), 3, + ACTIONS(490), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(662), 23, + anon_sym_PIPE, + ACTIONS(488), 22, sym_qmark, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -71943,19 +72647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25431] = 4, + anon_sym_PIPE_GT_GT, + [25447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1049), 1, + STATE(1053), 1, sym_comment, - ACTIONS(668), 3, + ACTIONS(642), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(666), 23, + ACTIONS(640), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -71979,16 +72683,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25468] = 4, + [25484] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1050), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1649), 1, + anon_sym_RBRACE, + STATE(1054), 1, sym_comment, - ACTIONS(746), 3, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [25531] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1055), 1, + sym_comment, + ACTIONS(604), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(744), 23, + ACTIONS(602), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72012,16 +72754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25505] = 4, + [25568] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1051), 1, + STATE(1056), 1, sym_comment, - ACTIONS(738), 3, + ACTIONS(576), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(736), 23, + ACTIONS(574), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72045,24 +72787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25542] = 9, + [25605] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, + ACTIONS(1387), 1, anon_sym_STAR, - ACTIONS(1397), 1, + ACTIONS(1389), 1, sym_name, - ACTIONS(1643), 1, + ACTIONS(1651), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1057), 1, sym_comment, - STATE(1333), 1, + STATE(1355), 1, sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, + STATE(1499), 1, sym__attribute_name, - ACTIONS(241), 20, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, anon_sym_in, anon_sym_and, anon_sym_or, @@ -72083,16 +72825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_attr, anon_sym_default, anon_sym_undef, - [25589] = 4, + [25652] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1053), 1, + STATE(1058), 1, sym_comment, - ACTIONS(730), 3, + ACTIONS(568), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(728), 23, + ACTIONS(566), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72116,16 +72858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25626] = 4, + [25689] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1054), 1, + STATE(1059), 1, sym_comment, - ACTIONS(726), 3, + ACTIONS(564), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(724), 23, + ACTIONS(562), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72149,54 +72891,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25663] = 9, + [25726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1395), 1, - anon_sym_STAR, - ACTIONS(1397), 1, - sym_name, - ACTIONS(1645), 1, - anon_sym_RBRACE, - STATE(1055), 1, + STATE(1060), 1, sym_comment, - STATE(1333), 1, - sym_attribute, - STATE(1473), 1, - sym_keyword, - STATE(1538), 1, - sym__attribute_name, - ACTIONS(241), 20, + ACTIONS(560), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(558), 23, + sym_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_STAR, anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_and, anon_sym_or, - anon_sym_if, - anon_sym_elsif, - anon_sym_else, - anon_sym_unless, - anon_sym_case, - anon_sym_define, - anon_sym_plan, - anon_sym_apply, - anon_sym_class, - anon_sym_inherits, - anon_sym_node, - anon_sym_function, - anon_sym_type, - anon_sym_private, - anon_sym_attr, - anon_sym_default, - anon_sym_undef, - [25710] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [25763] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1056), 1, + STATE(1061), 1, sym_comment, - ACTIONS(498), 3, + ACTIONS(552), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(496), 23, + ACTIONS(550), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72220,16 +72957,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25747] = 4, + [25800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1057), 1, + STATE(1062), 1, sym_comment, - ACTIONS(718), 3, + ACTIONS(544), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(716), 23, + ACTIONS(542), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72253,16 +72990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25784] = 4, + [25837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1058), 1, + STATE(1063), 1, sym_comment, - ACTIONS(714), 3, + ACTIONS(516), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(712), 23, + ACTIONS(514), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72286,20 +73023,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25821] = 5, + [25874] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1647), 1, - anon_sym_LPAREN, - STATE(1059), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1653), 1, + anon_sym_RBRACE, + STATE(1064), 1, sym_comment, - ACTIONS(494), 4, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [25921] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1065), 1, + sym_comment, + ACTIONS(650), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, + ACTIONS(648), 23, + sym_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_PIPE, - ACTIONS(490), 21, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + [25958] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1066), 1, + sym_comment, + ACTIONS(654), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(652), 23, sym_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -72317,19 +73124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [25860] = 4, + [25995] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1060), 1, + STATE(1067), 1, sym_comment, - ACTIONS(704), 3, + ACTIONS(686), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(702), 23, + ACTIONS(684), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72353,16 +73160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25897] = 4, + [26032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1061), 1, + STATE(1068), 1, sym_comment, - ACTIONS(700), 3, + ACTIONS(690), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(698), 23, + ACTIONS(688), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72386,16 +73193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25934] = 4, + [26069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1062), 1, + STATE(1069), 1, sym_comment, - ACTIONS(696), 3, + ACTIONS(702), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(694), 23, + ACTIONS(700), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72419,16 +73226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [25971] = 4, + [26106] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1063), 1, + STATE(1070), 1, sym_comment, - ACTIONS(692), 3, + ACTIONS(710), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(690), 23, + ACTIONS(708), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72452,16 +73259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26008] = 4, + [26143] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1064), 1, + STATE(1071), 1, sym_comment, - ACTIONS(684), 3, + ACTIONS(764), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(682), 23, + ACTIONS(762), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72485,16 +73292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26045] = 4, + [26180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1065), 1, + STATE(1072), 1, sym_comment, - ACTIONS(680), 3, + ACTIONS(714), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(678), 23, + ACTIONS(712), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72518,16 +73325,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26082] = 4, + [26217] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1066), 1, + STATE(1073), 1, sym_comment, - ACTIONS(570), 3, + ACTIONS(500), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(568), 23, + anon_sym_PIPE, + ACTIONS(498), 22, + sym_qmark, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_PIPE_GT, + anon_sym_LT_LT_PIPE, + [26254] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1074), 1, + sym_comment, + ACTIONS(748), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(746), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72551,16 +73391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26119] = 4, + [26291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1067), 1, + STATE(1075), 1, sym_comment, - ACTIONS(644), 3, + ACTIONS(738), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(642), 23, + ACTIONS(736), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72584,16 +73424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26156] = 4, + [26328] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1068), 1, + STATE(1076), 1, sym_comment, - ACTIONS(672), 3, + ACTIONS(504), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(670), 23, + ACTIONS(502), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72617,16 +73457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26193] = 4, + [26365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1069), 1, + STATE(1077), 1, sym_comment, - ACTIONS(676), 3, + ACTIONS(768), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(674), 23, + ACTIONS(766), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72650,16 +73490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26230] = 4, + [26402] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1070), 1, + STATE(1078), 1, sym_comment, - ACTIONS(688), 3, + ACTIONS(756), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(686), 23, + ACTIONS(754), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72683,16 +73523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26267] = 4, + [26439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1071), 1, + STATE(1079), 1, sym_comment, - ACTIONS(632), 3, + ACTIONS(540), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(630), 23, + ACTIONS(538), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72716,10 +73556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26304] = 4, + [26476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1072), 1, + STATE(1080), 1, sym_comment, ACTIONS(600), 3, anon_sym_LT_LT, @@ -72749,16 +73589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26341] = 4, + [26513] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1073), 1, + STATE(1081), 1, sym_comment, - ACTIONS(562), 3, + ACTIONS(678), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(560), 23, + ACTIONS(676), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72782,16 +73622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26378] = 4, + [26550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1074), 1, + STATE(1082), 1, sym_comment, - ACTIONS(526), 3, + ACTIONS(722), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(524), 23, + ACTIONS(720), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72815,16 +73655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26415] = 4, + [26587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1075), 1, + STATE(1083), 1, sym_comment, - ACTIONS(574), 3, + ACTIONS(744), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(572), 23, + ACTIONS(742), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72848,16 +73688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26452] = 4, + [26624] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1076), 1, + STATE(1084), 1, sym_comment, - ACTIONS(734), 3, + ACTIONS(536), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(732), 23, + ACTIONS(534), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -72881,20 +73721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26489] = 5, + [26661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_LPAREN, - STATE(1077), 1, + STATE(1085), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(612), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 22, + ACTIONS(610), 23, sym_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -72915,18 +73754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26528] = 4, + [26698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1078), 1, + STATE(1086), 1, sym_comment, - ACTIONS(482), 4, + ACTIONS(620), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(480), 22, + ACTIONS(618), 23, sym_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -72945,22 +73784,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_PIPE, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [26565] = 4, + [26735] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1079), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN, + STATE(1087), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(476), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 23, + anon_sym_PIPE, + ACTIONS(472), 21, sym_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -72978,19 +73818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [26602] = 4, + [26774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1080), 1, + STATE(1088), 1, sym_comment, - ACTIONS(620), 3, + ACTIONS(726), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(618), 23, + ACTIONS(724), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -73014,18 +73854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26639] = 4, + [26811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1081), 1, + STATE(1089), 1, sym_comment, - ACTIONS(652), 3, + ACTIONS(674), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(650), 23, + ACTIONS(672), 23, sym_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -73044,19 +73884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26676] = 4, + anon_sym_PIPE_GT_GT, + [26848] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1082), 1, + STATE(1090), 1, sym_comment, - ACTIONS(624), 3, + ACTIONS(734), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(622), 23, + ACTIONS(732), 23, sym_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -73080,18 +73920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26713] = 4, + [26885] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1083), 1, + STATE(1091), 1, sym_comment, - ACTIONS(502), 3, + ACTIONS(674), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(500), 23, + ACTIONS(672), 23, sym_qmark, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, @@ -73110,21 +73950,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_PIPE, anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, - [26750] = 5, + anon_sym_PIPE_GT_GT, + [26922] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LBRACE, - STATE(1084), 1, + ACTIONS(1387), 1, + anon_sym_STAR, + ACTIONS(1389), 1, + sym_name, + ACTIONS(1657), 1, + anon_sym_RBRACE, + STATE(1092), 1, sym_comment, - ACTIONS(760), 3, + STATE(1355), 1, + sym_attribute, + STATE(1499), 1, + sym__attribute_name, + STATE(1504), 1, + sym_keyword, + ACTIONS(243), 20, + anon_sym_in, + anon_sym_and, + anon_sym_or, + anon_sym_if, + anon_sym_elsif, + anon_sym_else, + anon_sym_unless, + anon_sym_case, + anon_sym_define, + anon_sym_plan, + anon_sym_apply, + anon_sym_class, + anon_sym_inherits, + anon_sym_node, + anon_sym_function, + anon_sym_type, + anon_sym_private, + anon_sym_attr, + anon_sym_default, + anon_sym_undef, + [26969] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1093), 1, + sym_comment, + ACTIONS(490), 4, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(756), 22, + anon_sym_PIPE, + ACTIONS(488), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73145,18 +74022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, + anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - anon_sym_PIPE_GT_GT, - [26789] = 4, + [27006] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1085), 1, + ACTIONS(1659), 1, + anon_sym_LBRACE, + STATE(1094), 1, sym_comment, - ACTIONS(726), 3, + ACTIONS(638), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(724), 22, + ACTIONS(634), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73179,16 +74058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [26825] = 4, + [27045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1086), 1, + STATE(1095), 1, sym_comment, - ACTIONS(640), 3, + ACTIONS(520), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(638), 22, + ACTIONS(518), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73211,16 +74090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [26861] = 4, + [27081] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1087), 1, + STATE(1096), 1, sym_comment, - ACTIONS(750), 3, + ACTIONS(624), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(748), 22, + ACTIONS(622), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73243,16 +74122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [26897] = 4, + [27117] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1088), 1, + STATE(1097), 1, sym_comment, - ACTIONS(742), 3, + ACTIONS(646), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(740), 22, + ACTIONS(644), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73275,16 +74154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [26933] = 4, + [27153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1089), 1, + STATE(1098), 1, sym_comment, - ACTIONS(688), 3, + ACTIONS(764), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(686), 22, + ACTIONS(762), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73307,16 +74186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [26969] = 4, + [27189] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1090), 1, + STATE(1099), 1, sym_comment, - ACTIONS(644), 3, + ACTIONS(616), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(642), 22, + ACTIONS(614), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73339,16 +74218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27005] = 4, + [27225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1091), 1, + STATE(1100), 1, sym_comment, - ACTIONS(586), 3, + ACTIONS(524), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(584), 22, + ACTIONS(522), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73371,16 +74250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27041] = 4, + [27261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1092), 1, + STATE(1101), 1, sym_comment, - ACTIONS(486), 3, + ACTIONS(658), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(484), 22, + ACTIONS(656), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73403,16 +74282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27077] = 4, + [27297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1093), 1, + STATE(1102), 1, sym_comment, - ACTIONS(514), 3, + ACTIONS(592), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 22, + ACTIONS(590), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73435,16 +74314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27113] = 4, + [27333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1094), 1, + STATE(1103), 1, sym_comment, - ACTIONS(582), 3, + ACTIONS(670), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(580), 22, + ACTIONS(668), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73467,16 +74346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27149] = 4, + [27369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1095), 1, + STATE(1104), 1, sym_comment, - ACTIONS(305), 3, + ACTIONS(528), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(303), 22, + ACTIONS(526), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73499,16 +74378,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27185] = 4, + [27405] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1096), 1, + STATE(1105), 1, sym_comment, - ACTIONS(522), 3, + ACTIONS(604), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(520), 22, + ACTIONS(602), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73531,16 +74410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27221] = 4, + [27441] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1097), 1, + STATE(1106), 1, sym_comment, - ACTIONS(558), 3, + ACTIONS(756), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(556), 22, + ACTIONS(754), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73563,16 +74442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27257] = 4, + [27477] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1098), 1, + STATE(1107), 1, sym_comment, - ACTIONS(570), 3, + ACTIONS(548), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(568), 22, + ACTIONS(546), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73595,16 +74474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27293] = 4, + [27513] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1099), 1, + STATE(1108), 1, sym_comment, - ACTIONS(530), 3, + ACTIONS(536), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(528), 22, + ACTIONS(534), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73627,16 +74506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27329] = 4, + [27549] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1100), 1, + STATE(1109), 1, sym_comment, - ACTIONS(550), 3, + ACTIONS(504), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(548), 22, + ACTIONS(502), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73659,16 +74538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27365] = 4, + [27585] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1101), 1, + STATE(1110), 1, sym_comment, - ACTIONS(546), 3, + ACTIONS(682), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(544), 22, + ACTIONS(680), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73691,16 +74570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27401] = 4, + [27621] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1102), 1, + STATE(1111), 1, sym_comment, - ACTIONS(542), 3, + ACTIONS(305), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(540), 22, + ACTIONS(303), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73723,16 +74602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27437] = 4, + [27657] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1103), 1, + STATE(1112), 1, sym_comment, - ACTIONS(538), 3, + ACTIONS(584), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(536), 22, + ACTIONS(582), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73755,16 +74634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27473] = 4, + [27693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1104), 1, + STATE(1113), 1, sym_comment, - ACTIONS(534), 3, + ACTIONS(768), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(532), 22, + ACTIONS(766), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73787,16 +74666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27509] = 4, + [27729] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1105), 1, + STATE(1114), 1, sym_comment, - ACTIONS(518), 3, + ACTIONS(726), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(516), 22, + ACTIONS(724), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73819,16 +74698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27545] = 4, + [27765] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1106), 1, + STATE(1115), 1, sym_comment, - ACTIONS(374), 3, + ACTIONS(564), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 22, + ACTIONS(562), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73851,16 +74730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27581] = 4, + [27801] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1107), 1, + STATE(1116), 1, sym_comment, - ACTIONS(382), 3, + ACTIONS(608), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 22, + ACTIONS(606), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73883,16 +74762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27617] = 4, + [27837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1108), 1, + STATE(1117), 1, sym_comment, - ACTIONS(510), 3, + ACTIONS(588), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(508), 22, + ACTIONS(586), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73915,16 +74794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27653] = 4, + [27873] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1109), 1, + STATE(1118), 1, sym_comment, - ACTIONS(652), 3, + ACTIONS(512), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(650), 22, + ACTIONS(510), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73947,16 +74826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27689] = 4, + [27909] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1110), 1, + STATE(1119), 1, sym_comment, - ACTIONS(632), 3, + ACTIONS(580), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(630), 22, + ACTIONS(578), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -73979,16 +74858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27725] = 4, + [27945] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1111), 1, + STATE(1120), 1, sym_comment, - ACTIONS(600), 3, + ACTIONS(560), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(598), 22, + ACTIONS(558), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74011,16 +74890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27761] = 4, + [27981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1112), 1, + STATE(1121), 1, sym_comment, - ACTIONS(554), 3, + ACTIONS(552), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(552), 22, + ACTIONS(550), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74043,16 +74922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27797] = 4, + [28017] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1113), 1, + STATE(1122), 1, sym_comment, - ACTIONS(566), 3, + ACTIONS(760), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(564), 22, + ACTIONS(758), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74075,16 +74954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27833] = 4, + [28053] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1114), 1, + STATE(1123), 1, sym_comment, - ACTIONS(680), 3, + ACTIONS(730), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(678), 22, + ACTIONS(728), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74107,16 +74986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27869] = 4, + [28089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1115), 1, + STATE(1124), 1, sym_comment, - ACTIONS(608), 3, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(606), 22, + ACTIONS(506), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74139,16 +75018,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27905] = 4, + [28125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1116), 1, + STATE(1125), 1, sym_comment, - ACTIONS(620), 3, + ACTIONS(494), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(618), 22, + ACTIONS(492), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74171,18 +75050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27941] = 4, + [28161] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1117), 1, + ACTIONS(1661), 1, + anon_sym_LPAREN, + STATE(1126), 1, sym_comment, - ACTIONS(502), 3, + ACTIONS(508), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(500), 22, + ACTIONS(506), 21, sym_qmark, - anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -74203,16 +75083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [27977] = 4, + [28199] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1118), 1, + STATE(1127), 1, sym_comment, - ACTIONS(684), 3, + ACTIONS(752), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(682), 22, + ACTIONS(750), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74235,16 +75115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28013] = 4, + [28235] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1119), 1, + STATE(1128), 1, sym_comment, - ACTIONS(692), 3, + ACTIONS(540), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(690), 22, + ACTIONS(538), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74267,16 +75147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28049] = 4, + [28271] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1120), 1, + STATE(1129), 1, sym_comment, - ACTIONS(696), 3, + ACTIONS(694), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(694), 22, + ACTIONS(692), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74299,16 +75179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28085] = 4, + [28307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1121), 1, + STATE(1130), 1, sym_comment, - ACTIONS(700), 3, + ACTIONS(544), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(698), 22, + ACTIONS(542), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74331,16 +75211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28121] = 4, + [28343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1122), 1, + STATE(1131), 1, sym_comment, - ACTIONS(612), 3, + ACTIONS(516), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(610), 22, + ACTIONS(514), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74363,19 +75243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28157] = 5, + [28379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, - anon_sym_LPAREN, - STATE(1123), 1, + STATE(1132), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(576), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 21, + ACTIONS(574), 22, sym_qmark, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -74394,18 +75273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_LT_PIPE, - anon_sym_PIPE_GT, anon_sym_LT_LT_PIPE, - [28195] = 4, + anon_sym_PIPE_GT_GT, + [28415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1124), 1, + STATE(1133), 1, sym_comment, - ACTIONS(526), 3, + ACTIONS(706), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(524), 22, + ACTIONS(704), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74428,10 +75307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28231] = 4, + [28451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1125), 1, + STATE(1134), 1, sym_comment, ACTIONS(628), 3, anon_sym_LT_LT, @@ -74460,16 +75339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28267] = 4, + [28487] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1126), 1, + STATE(1135), 1, sym_comment, - ACTIONS(616), 3, + ACTIONS(632), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(614), 22, + ACTIONS(630), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74492,16 +75371,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28303] = 4, + [28523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1127), 1, + STATE(1136), 1, sym_comment, - ACTIONS(562), 3, + ACTIONS(642), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(560), 22, + ACTIONS(640), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74524,16 +75403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28339] = 4, + [28559] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1128), 1, + STATE(1137), 1, sym_comment, - ACTIONS(704), 3, + ACTIONS(572), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(702), 22, + ACTIONS(570), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74556,16 +75435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28375] = 4, + [28595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1129), 1, + STATE(1138), 1, sym_comment, - ACTIONS(636), 3, + ACTIONS(650), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(634), 22, + ACTIONS(648), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74588,16 +75467,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28411] = 4, + [28631] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1130), 1, + STATE(1139), 1, sym_comment, - ACTIONS(714), 3, + ACTIONS(612), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(712), 22, + ACTIONS(610), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74620,16 +75499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28447] = 4, + [28667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1131), 1, + STATE(1140), 1, sym_comment, - ACTIONS(718), 3, + ACTIONS(596), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(716), 22, + ACTIONS(594), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74652,16 +75531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28483] = 4, + [28703] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1132), 1, + STATE(1141), 1, sym_comment, - ACTIONS(624), 3, + ACTIONS(654), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(622), 22, + ACTIONS(652), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74684,16 +75563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28519] = 4, + [28739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1133), 1, + STATE(1142), 1, sym_comment, - ACTIONS(754), 3, + ACTIONS(382), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(752), 22, + ACTIONS(380), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74716,16 +75595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28555] = 4, + [28775] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1134), 1, + STATE(1143), 1, sym_comment, - ACTIONS(604), 3, + ACTIONS(748), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(602), 22, + ACTIONS(746), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74748,16 +75627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28591] = 4, + [28811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1135), 1, + STATE(1144), 1, sym_comment, - ACTIONS(672), 3, + ACTIONS(390), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(670), 22, + ACTIONS(388), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74780,16 +75659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28627] = 4, + [28847] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1136), 1, + STATE(1145), 1, sym_comment, - ACTIONS(498), 3, + ACTIONS(718), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(496), 22, + ACTIONS(716), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74812,16 +75691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28663] = 4, + [28883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1137), 1, + STATE(1146), 1, sym_comment, - ACTIONS(722), 3, + ACTIONS(678), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(720), 22, + ACTIONS(676), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74844,16 +75723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28699] = 4, + [28919] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1138), 1, + STATE(1147), 1, sym_comment, - ACTIONS(656), 3, + ACTIONS(738), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(654), 22, + ACTIONS(736), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74876,16 +75755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28735] = 4, + [28955] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1139), 1, + STATE(1148), 1, sym_comment, - ACTIONS(574), 3, + ACTIONS(662), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(572), 22, + ACTIONS(660), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74908,16 +75787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28771] = 4, + [28991] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1140), 1, + STATE(1149), 1, sym_comment, - ACTIONS(660), 3, + ACTIONS(568), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(658), 22, + ACTIONS(566), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -74940,19 +75819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28807] = 5, + [29027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_LPAREN, - STATE(1141), 1, + STATE(1150), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(686), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 21, + ACTIONS(684), 22, sym_qmark, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_STAR, anon_sym_in, @@ -74973,16 +75851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28845] = 4, + [29063] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1142), 1, + STATE(1151), 1, sym_comment, - ACTIONS(676), 3, + ACTIONS(620), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(674), 22, + ACTIONS(618), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75005,10 +75883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28881] = 4, + [29099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1143), 1, + STATE(1152), 1, sym_comment, ACTIONS(734), 3, anon_sym_LT_LT, @@ -75037,16 +75915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28917] = 4, + [29135] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1144), 1, + STATE(1153), 1, sym_comment, - ACTIONS(730), 3, + ACTIONS(714), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(728), 22, + ACTIONS(712), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75069,16 +75947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28953] = 4, + [29171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1145), 1, + STATE(1154), 1, sym_comment, - ACTIONS(738), 3, + ACTIONS(600), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(736), 22, + ACTIONS(598), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75101,16 +75979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [28989] = 4, + [29207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1146), 1, + STATE(1155), 1, sym_comment, - ACTIONS(746), 3, + ACTIONS(690), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(744), 22, + ACTIONS(688), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75133,16 +76011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29025] = 4, + [29243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1147), 1, + STATE(1156), 1, sym_comment, - ACTIONS(664), 3, + ACTIONS(532), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(662), 22, + ACTIONS(530), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75165,16 +76043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29061] = 4, + [29279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1148), 1, + STATE(1157), 1, sym_comment, - ACTIONS(668), 3, + ACTIONS(698), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(666), 22, + ACTIONS(696), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75197,16 +76075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29097] = 4, + [29315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1149), 1, + STATE(1158), 1, sym_comment, - ACTIONS(592), 3, + ACTIONS(702), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(588), 22, + ACTIONS(700), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75229,16 +76107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29133] = 4, + [29351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1150), 1, + STATE(1159), 1, sym_comment, - ACTIONS(596), 3, + ACTIONS(556), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(594), 22, + ACTIONS(554), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75261,16 +76139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29169] = 4, + [29387] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1151), 1, + STATE(1160), 1, sym_comment, - ACTIONS(578), 3, + ACTIONS(744), 3, anon_sym_LT_LT, anon_sym_GT, anon_sym_LT, - ACTIONS(576), 22, + ACTIONS(742), 22, sym_qmark, anon_sym_LPAREN, anon_sym_DASH, @@ -75293,7957 +76171,8125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, anon_sym_LT_LT_PIPE, anon_sym_PIPE_GT_GT, - [29205] = 17, + [29423] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1663), 1, + anon_sym_LPAREN, + STATE(1161), 1, + sym_comment, + ACTIONS(508), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(506), 21, + sym_qmark, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_PIPE_GT, + anon_sym_LT_LT_PIPE, + [29461] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1162), 1, + sym_comment, + ACTIONS(710), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(708), 22, + sym_qmark, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + anon_sym_PIPE_GT_GT, + [29497] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1163), 1, + sym_comment, + ACTIONS(722), 3, + anon_sym_LT_LT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(720), 22, + sym_qmark, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_GT_GT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_LT_LT_PIPE, + anon_sym_PIPE_GT_GT, + [29533] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1661), 1, + ACTIONS(1667), 1, anon_sym_inherits, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(332), 1, + STATE(705), 1, sym_block, - STATE(1152), 1, + STATE(1164), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29260] = 17, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29589] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - ACTIONS(1675), 1, + ACTIONS(1681), 1, anon_sym_inherits, - STATE(805), 1, + STATE(1148), 1, sym_block, - STATE(1153), 1, + STATE(1165), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29315] = 17, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29645] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - ACTIONS(1677), 1, + ACTIONS(1683), 1, anon_sym_inherits, - STATE(682), 1, + STATE(816), 1, sym_block, - STATE(1154), 1, + STATE(1166), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29370] = 16, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29701] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1471), 1, + anon_sym_LBRACE, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1155), 1, + ACTIONS(1685), 1, + anon_sym_inherits, + STATE(1039), 1, + sym_block, + STATE(1167), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1315), 1, - sym__hostnames, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29423] = 17, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29757] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, - sym_number, ACTIONS(1679), 1, - anon_sym_inherits, - STATE(1030), 1, - sym_block, - STATE(1156), 1, + sym_number, + STATE(1168), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1287), 1, + sym__hostnames, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29478] = 17, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29811] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - ACTIONS(1681), 1, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(1689), 1, anon_sym_inherits, - STATE(1103), 1, + STATE(350), 1, sym_block, - STATE(1157), 1, + STATE(1169), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29533] = 17, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29867] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - ACTIONS(1685), 1, + ACTIONS(1693), 1, anon_sym_inherits, - STATE(163), 1, + STATE(194), 1, sym_block, - STATE(1158), 1, + STATE(1170), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1385), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1409), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29588] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29923] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1159), 1, + STATE(1171), 1, sym_comment, - STATE(1295), 1, + STATE(1294), 1, sym__hostnames, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29637] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [29973] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1160), 1, + STATE(1172), 1, sym_comment, - STATE(1296), 1, + STATE(1298), 1, sym__hostnames, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29686] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30023] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1161), 1, + STATE(1173), 1, sym_comment, - STATE(1268), 1, + STATE(1312), 1, sym__hostnames, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29735] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30073] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1162), 1, + STATE(1174), 1, sym_comment, - STATE(1294), 1, + STATE(1287), 1, sym__hostnames, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29784] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30123] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1163), 1, + STATE(1175), 1, sym_comment, - STATE(1289), 1, + STATE(1286), 1, sym__hostnames, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1359), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29833] = 15, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30173] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1164), 1, + STATE(1176), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1315), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1329), 1, sym__hostnames, - STATE(1359), 1, + STATE(1334), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29882] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30223] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1165), 1, + STATE(1177), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1524), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1420), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29928] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30270] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1166), 1, + STATE(1178), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, + STATE(1327), 1, + sym_dotted_name, STATE(1545), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [29974] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30317] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1167), 1, + STATE(1179), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1417), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1530), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30020] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30364] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1168), 1, + STATE(1180), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1553), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1458), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30066] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30411] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1169), 1, + STATE(1181), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1504), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1546), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30112] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30458] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1170), 1, + STATE(1182), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1469), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1540), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30158] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30505] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1171), 1, + STATE(1183), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1459), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1468), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30204] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30552] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1172), 1, + STATE(1184), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1526), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1483), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30250] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30599] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1173), 1, + STATE(1185), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1416), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1473), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30296] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30646] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1174), 1, + STATE(1186), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1467), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1562), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30342] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30693] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1175), 1, + STATE(1187), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1529), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1434), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30388] = 14, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30740] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1665), 1, anon_sym_SLASH, - ACTIONS(1663), 1, + ACTIONS(1669), 1, anon_sym_SQUOTE, - ACTIONS(1665), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1667), 1, + ACTIONS(1673), 1, anon_sym_AT_LPAREN, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1671), 1, + ACTIONS(1677), 1, sym_name, - ACTIONS(1673), 1, + ACTIONS(1679), 1, sym_number, - STATE(1176), 1, + STATE(1188), 1, sym_comment, - STATE(1305), 1, - sym_dotted_name, - STATE(1311), 1, + STATE(1326), 1, sym_name_or_number, - STATE(1434), 1, + STATE(1327), 1, + sym_dotted_name, + STATE(1541), 1, sym_hostname, - STATE(1377), 2, - sym_string, - sym_heredoc, - STATE(1335), 3, + STATE(1338), 3, sym__quotedtext, sym_regex, sym_default, - [30434] = 8, + STATE(1347), 3, + sym_single_quoted_string, + sym_double_quoted_string, + sym_heredoc, + [30787] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(1695), 1, anon_sym_EQ, - ACTIONS(1689), 1, + ACTIONS(1697), 1, anon_sym_PLUS_EQ, - ACTIONS(1691), 1, + ACTIONS(1699), 1, anon_sym_DASH_EQ, - STATE(243), 1, + STATE(242), 1, sym_chaining_arrow, - STATE(1177), 1, + STATE(1189), 1, sym_comment, - ACTIONS(1171), 4, + ACTIONS(1179), 4, anon_sym_DASH_GT, anon_sym_TILDE_GT, anon_sym_LT_DASH, anon_sym_LT_TILDE, - ACTIONS(1163), 5, + ACTIONS(1171), 5, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [30466] = 12, + [30819] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1701), 1, anon_sym_STAR, - ACTIONS(1695), 1, + ACTIONS(1703), 1, anon_sym_PIPE, - ACTIONS(1697), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR, - ACTIONS(1699), 1, + ACTIONS(1707), 1, sym_type, - STATE(1178), 1, - sym_comment, STATE(1190), 1, + sym_comment, + STATE(1196), 1, sym__parameter_type, - STATE(1375), 1, - sym_parameter, - STATE(1393), 1, + STATE(1335), 1, sym_variable, - STATE(1474), 1, + STATE(1343), 1, + sym_parameter, + STATE(1544), 1, sym__parameters, - STATE(1354), 2, + STATE(1332), 2, sym_regular_parameter, sym_splat_parameter, - STATE(1373), 2, + STATE(1407), 2, sym__untyped_parameter, sym_typed_parameter, - [30505] = 12, + [30858] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR, - ACTIONS(1699), 1, + ACTIONS(1707), 1, sym_type, - ACTIONS(1701), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_STAR, - STATE(1179), 1, - sym_comment, STATE(1191), 1, + sym_comment, + STATE(1202), 1, sym__parameter_type, - STATE(1334), 1, - sym_variable, - STATE(1375), 1, + STATE(1343), 1, sym_parameter, - STATE(1406), 1, + STATE(1350), 1, + sym_variable, + STATE(1429), 1, sym__parameters, - STATE(1354), 2, + STATE(1332), 2, sym_regular_parameter, sym_splat_parameter, - STATE(1373), 2, + STATE(1407), 2, sym__untyped_parameter, sym_typed_parameter, - [30544] = 11, + [30897] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_DOLLAR, - ACTIONS(1699), 1, - sym_type, - ACTIONS(1703), 1, + ACTIONS(1701), 1, anon_sym_STAR, ACTIONS(1705), 1, - anon_sym_RPAREN, - STATE(1180), 1, + anon_sym_DOLLAR, + ACTIONS(1707), 1, + sym_type, + ACTIONS(1713), 1, + anon_sym_PIPE, + STATE(1192), 1, sym_comment, - STATE(1191), 1, + STATE(1196), 1, sym__parameter_type, - STATE(1326), 1, - sym_parameter, - STATE(1334), 1, + STATE(1335), 1, sym_variable, - STATE(1354), 2, + STATE(1374), 1, + sym_parameter, + STATE(1332), 2, sym_regular_parameter, sym_splat_parameter, - STATE(1373), 2, + STATE(1407), 2, sym__untyped_parameter, sym_typed_parameter, - [30580] = 11, + [30933] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_STAR, - ACTIONS(1697), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR, - ACTIONS(1699), 1, - sym_type, ACTIONS(1707), 1, - anon_sym_PIPE, - STATE(1181), 1, + sym_type, + ACTIONS(1711), 1, + anon_sym_STAR, + ACTIONS(1715), 1, + anon_sym_RPAREN, + STATE(1193), 1, sym_comment, - STATE(1190), 1, + STATE(1202), 1, sym__parameter_type, - STATE(1326), 1, - sym_parameter, - STATE(1393), 1, + STATE(1350), 1, sym_variable, - STATE(1354), 2, + STATE(1374), 1, + sym_parameter, + STATE(1332), 2, sym_regular_parameter, sym_splat_parameter, - STATE(1373), 2, + STATE(1407), 2, sym__untyped_parameter, sym_typed_parameter, - [30616] = 5, + [30969] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1182), 1, + STATE(1194), 1, sym_comment, - STATE(1185), 1, + STATE(1197), 1, sym_classname, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - ACTIONS(1709), 5, + ACTIONS(1717), 5, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [30637] = 5, + [30990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(1721), 1, sym_type, - STATE(1183), 1, + STATE(1195), 1, sym_comment, - STATE(1579), 1, + STATE(1583), 1, sym__parameter_type, - ACTIONS(1709), 5, + ACTIONS(1717), 5, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [30657] = 8, + [31010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(289), 1, - sym_block, - STATE(1184), 1, + ACTIONS(1701), 1, + anon_sym_STAR, + ACTIONS(1705), 1, + anon_sym_DOLLAR, + STATE(1196), 1, sym_comment, - STATE(1307), 1, - sym_parameter_list, - STATE(1510), 1, - sym_return_type, - [30682] = 8, + STATE(1335), 1, + sym_variable, + STATE(1397), 1, + sym__untyped_parameter, + STATE(1332), 2, + sym_regular_parameter, + sym_splat_parameter, + [31033] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(699), 1, + STATE(687), 1, sym_block, - STATE(1185), 1, + STATE(1197), 1, sym_comment, - STATE(1313), 1, + STATE(1308), 1, sym_parameter_list, - STATE(1525), 1, + STATE(1523), 1, sym_return_type, - [30707] = 8, + [31058] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(815), 1, + STATE(797), 1, sym_block, - STATE(1186), 1, + STATE(1198), 1, sym_comment, - STATE(1270), 1, + STATE(1323), 1, sym_parameter_list, - STATE(1426), 1, + STATE(1529), 1, sym_return_type, - [30732] = 8, + [31083] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(1011), 1, + STATE(321), 1, sym_block, - STATE(1187), 1, + STATE(1199), 1, sym_comment, - STATE(1274), 1, + STATE(1319), 1, sym_parameter_list, - STATE(1442), 1, + STATE(1537), 1, sym_return_type, - [30757] = 8, + [31108] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(1151), 1, + STATE(1117), 1, sym_block, - STATE(1188), 1, + STATE(1200), 1, sym_comment, - STATE(1282), 1, + STATE(1299), 1, sym_parameter_list, - STATE(1477), 1, + STATE(1478), 1, sym_return_type, - [30782] = 8, + [31133] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(174), 1, + STATE(175), 1, sym_block, - STATE(1189), 1, + STATE(1201), 1, sym_comment, - STATE(1279), 1, + STATE(1296), 1, sym_parameter_list, STATE(1451), 1, sym_return_type, - [30807] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_STAR, - ACTIONS(1697), 1, - anon_sym_DOLLAR, - STATE(1190), 1, - sym_comment, - STATE(1352), 1, - sym__untyped_parameter, - STATE(1393), 1, - sym_variable, - STATE(1354), 2, - sym_regular_parameter, - sym_splat_parameter, - [30830] = 7, + [31158] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR, - ACTIONS(1703), 1, + ACTIONS(1711), 1, anon_sym_STAR, - STATE(1191), 1, + STATE(1202), 1, sym_comment, - STATE(1334), 1, + STATE(1350), 1, sym_variable, - STATE(1352), 1, + STATE(1397), 1, sym__untyped_parameter, - STATE(1354), 2, + STATE(1332), 2, sym_regular_parameter, sym_splat_parameter, - [30853] = 7, + [31181] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1721), 1, - anon_sym_LBRACK, ACTIONS(1723), 1, - anon_sym_inherits, - STATE(288), 1, + anon_sym_LPAREN, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(1015), 1, sym_block, - STATE(1192), 1, + STATE(1203), 1, sym_comment, - [30875] = 3, + STATE(1297), 1, + sym_parameter_list, + STATE(1456), 1, + sym_return_type, + [31206] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1193), 1, + ACTIONS(1729), 1, + sym__heredoc_end, + STATE(1204), 1, sym_comment, - ACTIONS(1725), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [30889] = 6, + STATE(1208), 1, + aux_sym_heredoc_repeat1, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1194), 1, + ACTIONS(1731), 1, + sym__heredoc_end, + STATE(1205), 1, sym_comment, - STATE(1400), 2, - sym_classname, - sym_default, - [30909] = 6, + STATE(1239), 1, + aux_sym_heredoc_repeat1, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7), 1, + ACTIONS(1041), 1, anon_sym_LBRACE, - ACTIONS(53), 1, + ACTIONS(1083), 1, anon_sym_LBRACK2, - ACTIONS(1729), 1, + ACTIONS(1733), 1, sym_type, - STATE(1195), 1, + STATE(1206), 1, sym_comment, - STATE(176), 2, + STATE(1029), 2, sym_array, sym_hash, - [30929] = 5, + [31262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1733), 1, + ACTIONS(1735), 1, + anon_sym_DQUOTE, + STATE(1207), 1, + sym_comment, + STATE(1259), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1737), 3, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + [31280] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1742), 1, sym__heredoc_end, - STATE(1196), 1, + STATE(1208), 2, sym_comment, - STATE(1204), 1, aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, + ACTIONS(1739), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [30947] = 5, + [31296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, + ACTIONS(1744), 1, anon_sym_DQUOTE, - STATE(1197), 1, + STATE(1209), 1, sym_comment, - STATE(1206), 1, - aux_sym_string_repeat2, + STATE(1230), 1, + aux_sym_double_quoted_string_repeat1, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [30965] = 6, + [31314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1198), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + STATE(1210), 2, sym_comment, - STATE(1468), 2, - sym_classname, - sym_default, - [30985] = 6, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1748), 3, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + [31330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1199), 1, + ACTIONS(1751), 1, + sym__heredoc_end, + STATE(1211), 1, sym_comment, - STATE(1458), 2, - sym_classname, - sym_default, - [31005] = 7, + STATE(1241), 1, + aux_sym_heredoc_repeat1, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - ACTIONS(1739), 1, - anon_sym_inherits, - STATE(701), 1, - sym_block, - STATE(1200), 1, + ACTIONS(1753), 1, + anon_sym_DQUOTE, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1212), 1, sym_comment, - STATE(1331), 1, - sym_parameter_list, - [31027] = 6, + ACTIONS(1737), 3, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + [31366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1201), 1, + ACTIONS(1755), 1, + anon_sym_DQUOTE, + STATE(1213), 1, sym_comment, - STATE(1413), 2, - sym_classname, - sym_default, - [31047] = 7, + STATE(1215), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1737), 3, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + [31384] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, + ACTIONS(1757), 1, anon_sym_EQ, - ACTIONS(1721), 1, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1741), 1, + ACTIONS(1761), 1, anon_sym_inherits, - STATE(698), 1, + STATE(1014), 1, sym_block, - STATE(1202), 1, + STATE(1214), 1, sym_comment, - [31069] = 6, + [31406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1203), 1, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1215), 1, sym_comment, - STATE(1425), 2, - sym_classname, - sym_default, - [31089] = 5, + ACTIONS(1737), 3, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + [31424] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1743), 1, - sym__heredoc_end, - STATE(1204), 1, + ACTIONS(1471), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1765), 1, + anon_sym_inherits, + STATE(1017), 1, + sym_block, + STATE(1216), 1, sym_comment, - STATE(1253), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31107] = 5, + STATE(1392), 1, + sym_parameter_list, + [31446] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1217), 1, + sym_comment, + STATE(1277), 1, + sym_classname, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(1719), 2, + sym_type, + sym_name, + [31464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1767), 1, anon_sym_DQUOTE, - STATE(1205), 1, + STATE(1212), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1218), 1, sym_comment, - STATE(1219), 1, - aux_sym_string_repeat2, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31125] = 5, + [31482] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1747), 1, + ACTIONS(1769), 1, anon_sym_DQUOTE, - STATE(1206), 1, + STATE(1219), 1, sym_comment, - STATE(1209), 1, - aux_sym_string_repeat2, + STATE(1233), 1, + aux_sym_double_quoted_string_repeat1, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31143] = 6, + [31500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1207), 1, + STATE(1220), 1, sym_comment, - STATE(1532), 2, + STATE(1281), 1, sym_classname, - sym_default, - [31163] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(1719), 2, sym_type, - ACTIONS(1727), 1, sym_name, - STATE(1208), 1, + [31518] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1221), 1, sym_comment, - STATE(1548), 2, + STATE(1228), 1, sym_classname, - sym_default, - [31183] = 4, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(1719), 2, + sym_type, + sym_name, + [31536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, - anon_sym_DQUOTE, - STATE(1209), 2, + STATE(1222), 1, sym_comment, - aux_sym_string_repeat2, - ACTIONS(1751), 3, - sym__expandable_string, - sym_interpolation, - sym_escape_sequence, - [31199] = 6, + ACTIONS(1771), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [31550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, + STATE(1198), 1, + sym_classname, + STATE(1223), 1, + sym_comment, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + ACTIONS(1719), 2, sym_type, - ACTIONS(1727), 1, sym_name, - STATE(1210), 1, + [31568] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1773), 1, + sym__heredoc_end, + STATE(1224), 1, sym_comment, - STATE(1432), 2, - sym_classname, - sym_default, - [31219] = 3, + STATE(1227), 1, + aux_sym_heredoc_repeat1, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31586] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1211), 1, + STATE(1225), 1, sym_comment, - ACTIONS(1754), 5, + ACTIONS(1775), 5, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [31233] = 6, + [31600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(117), 1, - anon_sym_LBRACE, - ACTIONS(161), 1, - anon_sym_LBRACK2, - ACTIONS(1756), 1, - sym_type, - STATE(1212), 1, + ACTIONS(1777), 1, + sym__heredoc_end, + STATE(1208), 1, + aux_sym_heredoc_repeat1, + STATE(1226), 1, sym_comment, - STATE(658), 2, - sym_array, - sym_hash, - [31253] = 6, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - anon_sym_default, - ACTIONS(1711), 1, - sym_type, - ACTIONS(1727), 1, - sym_name, - STATE(1213), 1, + ACTIONS(1779), 1, + sym__heredoc_end, + STATE(1208), 1, + aux_sym_heredoc_repeat1, + STATE(1227), 1, sym_comment, - STATE(1455), 2, - sym_classname, - sym_default, - [31273] = 7, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31636] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1758), 1, + ACTIONS(1781), 1, anon_sym_inherits, - STATE(812), 1, + STATE(795), 1, sym_block, - STATE(1214), 1, + STATE(1228), 1, sym_comment, - STATE(1384), 1, + STATE(1366), 1, sym_parameter_list, - [31295] = 5, + [31658] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1215), 1, - sym_comment, - STATE(1318), 1, - sym_classname, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(1711), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_LBRACK2, + ACTIONS(1783), 1, sym_type, - sym_name, - [31313] = 5, + STATE(1229), 1, + sym_comment, + STATE(173), 2, + sym_array, + sym_hash, + [31678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(1785), 1, anon_sym_DQUOTE, - STATE(1216), 1, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1230), 1, sym_comment, - STATE(1257), 1, - aux_sym_string_repeat2, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31331] = 7, + [31696] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, + ACTIONS(1757), 1, anon_sym_EQ, - ACTIONS(1721), 1, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1762), 1, + ACTIONS(1787), 1, anon_sym_inherits, - STATE(816), 1, + STATE(798), 1, sym_block, - STATE(1217), 1, + STATE(1231), 1, sym_comment, - [31353] = 5, + [31718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1764), 1, - sym__heredoc_end, - STATE(1218), 1, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1232), 1, sym_comment, - STATE(1240), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31371] = 5, + STATE(1549), 2, + sym_classname, + sym_default, + [31738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1791), 1, anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1219), 1, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1233), 1, sym_comment, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31389] = 6, + [31756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1711), 1, + ACTIONS(1719), 1, sym_type, - ACTIONS(1727), 1, + ACTIONS(1789), 1, sym_name, - STATE(1220), 1, + STATE(1234), 1, sym_comment, - STATE(1494), 2, + STATE(1535), 2, sym_classname, sym_default, - [31409] = 5, + [31776] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1221), 1, + ACTIONS(1793), 1, + sym__heredoc_end, + STATE(1226), 1, + aux_sym_heredoc_repeat1, + STATE(1235), 1, sym_comment, - STATE(1314), 1, - sym_classname, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(1711), 2, - sym_type, - sym_name, - [31427] = 6, + ACTIONS(1727), 3, + sym__heredoc_body, + sym_interpolation, + sym_escape_sequence, + [31794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1711), 1, + ACTIONS(1719), 1, sym_type, - ACTIONS(1727), 1, + ACTIONS(1789), 1, sym_name, - STATE(1222), 1, + STATE(1236), 1, sym_comment, - STATE(1423), 2, + STATE(1494), 2, sym_classname, sym_default, - [31447] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1768), 1, - sym__heredoc_end, - STATE(1223), 1, - sym_comment, - STATE(1253), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31465] = 5, + [31814] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, - sym__heredoc_end, - STATE(1223), 1, - aux_sym_heredoc_repeat1, - STATE(1224), 1, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(1757), 1, + anon_sym_EQ, + ACTIONS(1759), 1, + anon_sym_LBRACK, + ACTIONS(1795), 1, + anon_sym_inherits, + STATE(180), 1, + sym_block, + STATE(1237), 1, sym_comment, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31483] = 5, + [31836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1225), 1, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1238), 1, sym_comment, - ACTIONS(1737), 3, - sym__expandable_string, - sym_interpolation, - sym_escape_sequence, - [31501] = 5, + STATE(1460), 2, + sym_classname, + sym_default, + [31856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_DQUOTE, - STATE(1225), 1, - aux_sym_string_repeat2, - STATE(1226), 1, + ACTIONS(1797), 1, + sym__heredoc_end, + STATE(1208), 1, + aux_sym_heredoc_repeat1, + STATE(1239), 1, sym_comment, - ACTIONS(1737), 3, - sym__expandable_string, + ACTIONS(1727), 3, + sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31519] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1227), 1, - sym_comment, - ACTIONS(1776), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [31533] = 6, + [31874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(907), 1, anon_sym_LBRACE, - ACTIONS(275), 1, + ACTIONS(951), 1, anon_sym_LBRACK2, - ACTIONS(1778), 1, + ACTIONS(1799), 1, sym_type, - STATE(1228), 1, + STATE(1240), 1, sym_comment, - STATE(758), 2, + STATE(1125), 2, sym_array, sym_hash, - [31553] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - sym__heredoc_end, - STATE(1229), 1, - sym_comment, - STATE(1253), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31571] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1214), 1, - sym_classname, - STATE(1230), 1, - sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(1711), 2, - sym_type, - sym_name, - [31589] = 5, + [31894] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1782), 1, + ACTIONS(1801), 1, sym__heredoc_end, - STATE(1229), 1, + STATE(1208), 1, aux_sym_heredoc_repeat1, - STATE(1231), 1, + STATE(1241), 1, sym_comment, - ACTIONS(1731), 3, + ACTIONS(1727), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31607] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1232), 1, - sym_comment, - ACTIONS(1784), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [31621] = 6, + [31912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1037), 1, + ACTIONS(229), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(277), 1, anon_sym_LBRACK2, - ACTIONS(1786), 1, + ACTIONS(1803), 1, sym_type, - STATE(1233), 1, + STATE(1242), 1, sym_comment, - STATE(1022), 2, + STATE(807), 2, sym_array, sym_hash, - [31641] = 5, + [31932] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(1805), 1, anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1234), 1, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1243), 1, sym_comment, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31659] = 7, + [31950] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, + ACTIONS(1757), 1, anon_sym_EQ, - ACTIONS(1721), 1, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1790), 1, + ACTIONS(1807), 1, anon_sym_inherits, - STATE(1012), 1, + STATE(1116), 1, sym_block, - STATE(1235), 1, + STATE(1244), 1, sym_comment, - [31681] = 7, + [31972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1245), 1, + sym_comment, + STATE(1418), 2, + sym_classname, + sym_default, + [31992] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - ACTIONS(1792), 1, + ACTIONS(1809), 1, anon_sym_inherits, - STATE(1009), 1, + STATE(1137), 1, sym_block, - STATE(1236), 1, + STATE(1246), 1, sym_comment, - STATE(1383), 1, + STATE(1385), 1, sym_parameter_list, - [31703] = 5, + [32014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1794), 1, - sym__heredoc_end, - STATE(1237), 1, + ACTIONS(1811), 1, + anon_sym_DQUOTE, + STATE(1243), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1247), 1, sym_comment, - STATE(1255), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, + ACTIONS(1737), 3, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31721] = 5, + [32032] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - STATE(1234), 1, - aux_sym_string_repeat2, - STATE(1238), 1, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_inherits, + STATE(170), 1, + sym_block, + STATE(1248), 1, sym_comment, - ACTIONS(1737), 3, - sym__expandable_string, - sym_interpolation, - sym_escape_sequence, - [31739] = 6, + STATE(1386), 1, + sym_parameter_list, + [32054] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1675), 1, anon_sym_default, - ACTIONS(1711), 1, + ACTIONS(1719), 1, sym_type, - ACTIONS(1727), 1, + ACTIONS(1789), 1, sym_name, - STATE(1239), 1, + STATE(1249), 1, + sym_comment, + STATE(1564), 2, + sym_classname, + sym_default, + [32074] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1250), 1, sym_comment, - STATE(1412), 2, + STATE(1547), 2, sym_classname, sym_default, - [31759] = 5, + [32094] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(1815), 1, sym__heredoc_end, - STATE(1240), 1, + STATE(1251), 1, sym_comment, - STATE(1253), 1, + STATE(1269), 1, aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, + ACTIONS(1727), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31777] = 5, + [32112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1800), 1, + ACTIONS(1817), 1, sym__heredoc_end, - STATE(1241), 1, - sym_comment, - STATE(1253), 1, + STATE(1204), 1, aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, + STATE(1252), 1, + sym_comment, + ACTIONS(1727), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31795] = 5, + [32130] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1253), 1, + sym_comment, + ACTIONS(1819), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [32144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(1821), 1, sym__heredoc_end, - STATE(1241), 1, + STATE(1208), 1, aux_sym_heredoc_repeat1, - STATE(1242), 1, + STATE(1254), 1, sym_comment, - ACTIONS(1731), 3, + ACTIONS(1727), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31813] = 7, + [32162] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - ACTIONS(1804), 1, - anon_sym_inherits, - STATE(167), 1, - sym_block, - STATE(1243), 1, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1255), 1, sym_comment, - STATE(1395), 1, - sym_parameter_list, - [31835] = 6, + STATE(1436), 2, + sym_classname, + sym_default, + [32182] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1256), 1, + sym_comment, + STATE(1423), 2, + sym_classname, + sym_default, + [32202] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1257), 1, + sym_comment, + ACTIONS(1823), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [32216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(967), 1, + ACTIONS(117), 1, anon_sym_LBRACE, - ACTIONS(1011), 1, + ACTIONS(161), 1, anon_sym_LBRACK2, - ACTIONS(1806), 1, + ACTIONS(1825), 1, sym_type, - STATE(1244), 1, + STATE(1258), 1, sym_comment, - STATE(1092), 2, + STATE(696), 2, sym_array, sym_hash, - [31855] = 5, + [32236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1827), 1, anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1245), 1, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1259), 1, sym_comment, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31873] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1721), 1, - anon_sym_LBRACK, - ACTIONS(1810), 1, - anon_sym_inherits, - STATE(1150), 1, - sym_block, - STATE(1246), 1, - sym_comment, - [31895] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - ACTIONS(1812), 1, - anon_sym_inherits, - STATE(1112), 1, - sym_block, - STATE(1247), 1, - sym_comment, - STATE(1371), 1, - sym_parameter_list, - [31917] = 5, + [32254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_DQUOTE, - STATE(1245), 1, - aux_sym_string_repeat2, - STATE(1248), 1, + ACTIONS(1829), 1, + sym__heredoc_end, + STATE(1254), 1, + aux_sym_heredoc_repeat1, + STATE(1260), 1, sym_comment, - ACTIONS(1737), 3, - sym__expandable_string, + ACTIONS(1727), 3, + sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [31935] = 5, + [32272] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1186), 1, - sym_classname, - STATE(1249), 1, - sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - ACTIONS(1711), 2, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, sym_type, + ACTIONS(1789), 1, sym_name, - [31953] = 5, + STATE(1261), 1, + sym_comment, + STATE(1472), 2, + sym_classname, + sym_default, + [32292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1816), 1, - sym__heredoc_end, - STATE(1250), 1, + ACTIONS(879), 1, + anon_sym_LBRACE, + ACTIONS(1005), 1, + anon_sym_LBRACK2, + ACTIONS(1831), 1, + sym_type, + STATE(1262), 1, sym_comment, - STATE(1253), 1, - aux_sym_heredoc_repeat1, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [31971] = 5, + STATE(341), 2, + sym_array, + sym_hash, + [32312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, + ACTIONS(1833), 1, anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1251), 1, + STATE(1210), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1263), 1, sym_comment, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [31989] = 7, + [32330] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1757), 1, + anon_sym_EQ, + ACTIONS(1759), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, anon_sym_inherits, - STATE(293), 1, + STATE(322), 1, sym_block, - STATE(1252), 1, - sym_comment, - STATE(1347), 1, - sym_parameter_list, - [32011] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1825), 1, - sym__heredoc_end, - STATE(1253), 2, + STATE(1264), 1, sym_comment, - aux_sym_heredoc_repeat1, - ACTIONS(1822), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [32027] = 7, + [32352] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1719), 1, + ACTIONS(1757), 1, anon_sym_EQ, - ACTIONS(1721), 1, + ACTIONS(1759), 1, anon_sym_LBRACK, - ACTIONS(1827), 1, + ACTIONS(1837), 1, anon_sym_inherits, - STATE(179), 1, + STATE(690), 1, sym_block, - STATE(1254), 1, - sym_comment, - [32049] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1829), 1, - sym__heredoc_end, - STATE(1253), 1, - aux_sym_heredoc_repeat1, - STATE(1255), 1, + STATE(1265), 1, sym_comment, - ACTIONS(1731), 3, - sym__heredoc_body, - sym_interpolation, - sym_escape_sequence, - [32067] = 6, + [32374] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(949), 1, - anon_sym_LBRACK2, - ACTIONS(1831), 1, - sym_type, - STATE(1256), 1, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_inherits, + STATE(319), 1, + sym_block, + STATE(1266), 1, sym_comment, - STATE(309), 2, - sym_array, - sym_hash, - [32087] = 5, + STATE(1361), 1, + sym_parameter_list, + [32396] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, - anon_sym_DQUOTE, - STATE(1209), 1, - aux_sym_string_repeat2, - STATE(1257), 1, + ACTIONS(1475), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_inherits, + STATE(685), 1, + sym_block, + STATE(1267), 1, sym_comment, - ACTIONS(1737), 3, - sym__expandable_string, - sym_interpolation, - sym_escape_sequence, - [32105] = 5, + STATE(1375), 1, + sym_parameter_list, + [32418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1843), 1, anon_sym_DQUOTE, - STATE(1251), 1, - aux_sym_string_repeat2, - STATE(1258), 1, + STATE(1263), 1, + aux_sym_double_quoted_string_repeat1, + STATE(1268), 1, sym_comment, ACTIONS(1737), 3, - sym__expandable_string, + sym__dq_string, sym_interpolation, sym_escape_sequence, - [32123] = 5, + [32436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1845), 1, sym__heredoc_end, - STATE(1250), 1, + STATE(1208), 1, aux_sym_heredoc_repeat1, - STATE(1259), 1, + STATE(1269), 1, sym_comment, - ACTIONS(1731), 3, + ACTIONS(1727), 3, sym__heredoc_body, sym_interpolation, sym_escape_sequence, - [32141] = 5, + [32454] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_LBRACE, - STATE(1214), 1, - sym_classname, - STATE(1260), 1, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, + sym_type, + ACTIONS(1789), 1, + sym_name, + STATE(1270), 1, sym_comment, - ACTIONS(1711), 2, + STATE(1464), 2, + sym_classname, + sym_default, + [32474] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1675), 1, + anon_sym_default, + ACTIONS(1719), 1, sym_type, + ACTIONS(1789), 1, sym_name, - [32158] = 6, + STATE(1271), 1, + sym_comment, + STATE(1482), 2, + sym_classname, + sym_default, + [32494] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(659), 1, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(317), 1, sym_block, - STATE(1261), 1, - sym_comment, - STATE(1496), 1, - sym_return_type, - [32177] = 5, - ACTIONS(1841), 1, - anon_sym_SLASH, - ACTIONS(1845), 1, - sym__regex_char_escaped, - STATE(1262), 1, + STATE(1272), 1, sym_comment, - STATE(1263), 1, - aux_sym_regex_repeat1, - ACTIONS(1843), 2, - anon_sym_POUND, - sym__regex_char, - [32194] = 5, + STATE(1531), 1, + sym_parameter_list, + [32513] = 5, ACTIONS(1847), 1, anon_sym_SLASH, ACTIONS(1851), 1, sym__regex_char_escaped, - STATE(1263), 1, + STATE(1273), 1, sym_comment, - STATE(1317), 1, + STATE(1307), 1, aux_sym_regex_repeat1, ACTIONS(1849), 2, anon_sym_POUND, sym__regex_char, - [32211] = 5, + [32530] = 5, ACTIONS(1853), 1, anon_sym_SLASH, ACTIONS(1857), 1, sym__regex_char_escaped, - STATE(1264), 1, + STATE(1274), 1, sym_comment, - STATE(1272), 1, + STATE(1318), 1, aux_sym_regex_repeat1, ACTIONS(1855), 2, anon_sym_POUND, sym__regex_char, - [32228] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(1007), 1, - sym_block, - STATE(1265), 1, + [32547] = 5, + ACTIONS(1851), 1, + sym__regex_char_escaped, + ACTIONS(1859), 1, + anon_sym_SLASH, + STATE(1275), 1, sym_comment, - STATE(1438), 1, - sym_parameter_list, - [32247] = 3, + STATE(1307), 1, + aux_sym_regex_repeat1, + ACTIONS(1849), 2, + anon_sym_POUND, + sym__regex_char, + [32564] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1266), 1, + ACTIONS(1861), 1, + sym_type, + STATE(1276), 1, sym_comment, - ACTIONS(1859), 4, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_inherits, - [32260] = 6, + STATE(1583), 1, + sym__parameter_type, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + [32581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(1008), 1, + STATE(793), 1, sym_block, - STATE(1267), 1, + STATE(1277), 1, sym_comment, - STATE(1439), 1, + STATE(1512), 1, sym_parameter_list, - [32279] = 6, + [32600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - ACTIONS(1861), 1, - anon_sym_COMMA, ACTIONS(1863), 1, - anon_sym_inherits, - STATE(1010), 1, - sym_block, - STATE(1268), 1, + anon_sym_LBRACE, + STATE(1248), 1, + sym_classname, + STATE(1278), 1, + sym_comment, + ACTIONS(1719), 2, + sym_type, + sym_name, + [32617] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1279), 1, sym_comment, - [32298] = 5, + ACTIONS(676), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_PIPE, + [32630] = 5, ACTIONS(1865), 1, anon_sym_SLASH, ACTIONS(1869), 1, sym__regex_char_escaped, - STATE(1269), 1, + STATE(1280), 1, sym_comment, - STATE(1316), 1, + STATE(1290), 1, aux_sym_regex_repeat1, ACTIONS(1867), 2, anon_sym_POUND, sym__regex_char, - [32315] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(804), 1, - sym_block, - STATE(1270), 1, - sym_comment, - STATE(1404), 1, - sym_return_type, - [32334] = 6, + [32647] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(1020), 1, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(794), 1, sym_block, - STATE(1271), 1, + STATE(1281), 1, sym_comment, - STATE(1452), 1, - sym_return_type, - [32353] = 5, + STATE(1516), 1, + sym_parameter_list, + [32666] = 5, ACTIONS(1851), 1, sym__regex_char_escaped, ACTIONS(1871), 1, anon_sym_SLASH, - STATE(1272), 1, + STATE(1282), 1, sym_comment, - STATE(1317), 1, + STATE(1307), 1, aux_sym_regex_repeat1, ACTIONS(1849), 2, anon_sym_POUND, sym__regex_char, - [32370] = 6, + [32683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(703), 1, + STATE(1019), 1, sym_block, - STATE(1273), 1, + STATE(1283), 1, sym_comment, - STATE(1528), 1, + STATE(1452), 1, sym_parameter_list, - [32389] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(1031), 1, - sym_block, - STATE(1274), 1, - sym_comment, - STATE(1460), 1, - sym_return_type, - [32408] = 6, + [32702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(702), 1, + STATE(1018), 1, sym_block, - STATE(1275), 1, + STATE(1284), 1, sym_comment, - STATE(1527), 1, + STATE(1453), 1, sym_parameter_list, - [32427] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1276), 1, - sym_comment, - ACTIONS(1873), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_inherits, - [32440] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - sym_type, - STATE(1277), 1, - sym_comment, - STATE(1579), 1, - sym__parameter_type, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - [32457] = 5, - ACTIONS(1877), 1, + [32721] = 5, + ACTIONS(1873), 1, anon_sym_SLASH, - ACTIONS(1881), 1, + ACTIONS(1877), 1, sym__regex_char_escaped, - STATE(1278), 1, + STATE(1285), 1, sym_comment, - STATE(1284), 1, + STATE(1292), 1, aux_sym_regex_repeat1, - ACTIONS(1879), 2, + ACTIONS(1875), 2, anon_sym_POUND, sym__regex_char, - [32474] = 6, + [32738] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(162), 1, + ACTIONS(1879), 1, + anon_sym_COMMA, + ACTIONS(1881), 1, + anon_sym_inherits, + STATE(1016), 1, sym_block, - STATE(1279), 1, + STATE(1286), 1, sym_comment, - STATE(1489), 1, - sym_return_type, - [32493] = 6, + [32757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(159), 1, + ACTIONS(1883), 1, + anon_sym_COMMA, + ACTIONS(1885), 1, + anon_sym_inherits, + STATE(796), 1, sym_block, - STATE(1280), 1, + STATE(1287), 1, sym_comment, - STATE(1503), 1, - sym_parameter_list, - [32512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_EQ_GT, - STATE(1281), 1, + [32776] = 5, + ACTIONS(1887), 1, + anon_sym_SLASH, + ACTIONS(1891), 1, + sym__regex_char_escaped, + STATE(1275), 1, + aux_sym_regex_repeat1, + STATE(1288), 1, sym_comment, - ACTIONS(1883), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [32527] = 6, + ACTIONS(1889), 2, + anon_sym_POUND, + sym__regex_char, + [32793] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(1104), 1, + STATE(1026), 1, sym_block, - STATE(1282), 1, + STATE(1289), 1, sym_comment, - STATE(1422), 1, + STATE(1466), 1, sym_return_type, - [32546] = 5, - ACTIONS(1885), 1, - anon_sym_SLASH, - ACTIONS(1889), 1, - sym__regex_char_escaped, - STATE(1283), 1, - sym_comment, - STATE(1285), 1, - aux_sym_regex_repeat1, - ACTIONS(1887), 2, - anon_sym_POUND, - sym__regex_char, - [32563] = 5, + [32812] = 5, ACTIONS(1851), 1, sym__regex_char_escaped, - ACTIONS(1891), 1, + ACTIONS(1893), 1, anon_sym_SLASH, - STATE(1284), 1, + STATE(1290), 1, sym_comment, - STATE(1317), 1, + STATE(1307), 1, aux_sym_regex_repeat1, ACTIONS(1849), 2, anon_sym_POUND, sym__regex_char, - [32580] = 5, + [32829] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1475), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(683), 1, + sym_block, + STATE(1291), 1, + sym_comment, + STATE(1502), 1, + sym_parameter_list, + [32848] = 5, ACTIONS(1851), 1, sym__regex_char_escaped, - ACTIONS(1893), 1, + ACTIONS(1895), 1, anon_sym_SLASH, - STATE(1285), 1, + STATE(1292), 1, sym_comment, - STATE(1317), 1, + STATE(1307), 1, aux_sym_regex_repeat1, ACTIONS(1849), 2, anon_sym_POUND, sym__regex_char, - [32597] = 6, + [32865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(161), 1, + STATE(684), 1, sym_block, - STATE(1286), 1, + STATE(1293), 1, sym_comment, - STATE(1462), 1, + STATE(1503), 1, sym_parameter_list, - [32616] = 6, + [32884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(295), 1, + ACTIONS(1897), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_inherits, + STATE(686), 1, sym_block, - STATE(1287), 1, + STATE(1294), 1, sym_comment, - STATE(1501), 1, - sym_parameter_list, - [32635] = 6, + [32903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(294), 1, + STATE(312), 1, sym_block, - STATE(1288), 1, + STATE(1295), 1, sym_comment, - STATE(1505), 1, + STATE(1528), 1, sym_parameter_list, - [32654] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(1895), 1, - anon_sym_COMMA, - ACTIONS(1897), 1, - anon_sym_inherits, - STATE(291), 1, - sym_block, - STATE(1289), 1, - sym_comment, - [32673] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1290), 1, - sym_comment, - ACTIONS(1899), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_inherits, - [32686] = 6, + [32922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(1134), 1, + STATE(205), 1, sym_block, - STATE(1291), 1, + STATE(1296), 1, sym_comment, - STATE(1443), 1, + STATE(1567), 1, sym_return_type, - [32705] = 6, + [32941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(831), 1, + STATE(1040), 1, sym_block, - STATE(1292), 1, + STATE(1297), 1, sym_comment, - STATE(1483), 1, + STATE(1474), 1, sym_return_type, - [32724] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1293), 1, - sym_comment, - ACTIONS(1901), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [32737] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(1905), 1, - anon_sym_inherits, - STATE(171), 1, - sym_block, - STATE(1294), 1, - sym_comment, - [32756] = 6, + [32960] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - ACTIONS(1907), 1, + ACTIONS(1901), 1, anon_sym_COMMA, - ACTIONS(1909), 1, + ACTIONS(1903), 1, anon_sym_inherits, - STATE(1113), 1, + STATE(320), 1, sym_block, - STATE(1295), 1, + STATE(1298), 1, sym_comment, - [32775] = 6, + [32979] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1911), 1, - anon_sym_COMMA, - ACTIONS(1913), 1, - anon_sym_inherits, - STATE(700), 1, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(1157), 1, sym_block, - STATE(1296), 1, + STATE(1299), 1, sym_comment, - [32794] = 5, - ACTIONS(1915), 1, + STATE(1433), 1, + sym_return_type, + [32998] = 5, + ACTIONS(1905), 1, anon_sym_SLASH, - ACTIONS(1919), 1, + ACTIONS(1909), 1, sym__regex_char_escaped, - STATE(1297), 1, - sym_comment, - STATE(1312), 1, + STATE(1273), 1, aux_sym_regex_repeat1, - ACTIONS(1917), 2, - anon_sym_POUND, - sym__regex_char, - [32811] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(296), 1, - sym_block, - STATE(1298), 1, - sym_comment, - STATE(1543), 1, - sym_return_type, - [32830] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1299), 1, - sym_comment, - ACTIONS(1921), 4, - sym__expandable_string, - sym_interpolation, - sym_escape_sequence, - anon_sym_DQUOTE, - [32843] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(1099), 1, - sym_block, STATE(1300), 1, sym_comment, - STATE(1481), 1, - sym_parameter_list, - [32862] = 6, + ACTIONS(1907), 2, + anon_sym_POUND, + sym__regex_char, + [33015] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1461), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(1096), 1, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(804), 1, sym_block, STATE(1301), 1, sym_comment, - STATE(1482), 1, - sym_parameter_list, - [32881] = 3, + STATE(1557), 1, + sym_return_type, + [33034] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1302), 1, sym_comment, - ACTIONS(1923), 4, + ACTIONS(1911), 4, sym__heredoc_body, sym__heredoc_end, sym_interpolation, sym_escape_sequence, - [32894] = 5, - ACTIONS(1851), 1, - sym__regex_char_escaped, - ACTIONS(1925), 1, - anon_sym_SLASH, - STATE(1303), 1, - sym_comment, - STATE(1317), 1, - aux_sym_regex_repeat1, - ACTIONS(1849), 2, - anon_sym_POUND, - sym__regex_char, - [32911] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_classname, - STATE(1304), 1, - sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [32928] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DOT, - STATE(1305), 1, - sym_comment, - ACTIONS(1927), 3, + [33047] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1475), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_inherits, - [32943] = 5, - ACTIONS(1931), 1, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(695), 1, + sym_block, + STATE(1303), 1, + sym_comment, + STATE(1552), 1, + sym_return_type, + [33066] = 5, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1935), 1, + ACTIONS(1917), 1, sym__regex_char_escaped, - STATE(1303), 1, + STATE(1282), 1, aux_sym_regex_repeat1, - STATE(1306), 1, + STATE(1304), 1, sym_comment, - ACTIONS(1933), 2, + ACTIONS(1915), 2, anon_sym_POUND, sym__regex_char, - [32960] = 6, + [33083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + STATE(1305), 1, + sym_comment, + ACTIONS(1919), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [33096] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(333), 1, + STATE(1096), 1, sym_block, - STATE(1307), 1, + STATE(1306), 1, sym_comment, - STATE(1544), 1, + STATE(1446), 1, sym_return_type, - [32979] = 6, + [33115] = 4, + ACTIONS(1921), 1, + anon_sym_SLASH, + ACTIONS(1926), 1, + sym__regex_char_escaped, + ACTIONS(1923), 2, + anon_sym_POUND, + sym__regex_char, + STATE(1307), 2, + sym_comment, + aux_sym_regex_repeat1, + [33130] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1725), 1, anon_sym_GT_GT, - STATE(181), 1, + STATE(706), 1, sym_block, STATE(1308), 1, sym_comment, - STATE(1518), 1, + STATE(1527), 1, sym_return_type, - [32998] = 3, + [33149] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(337), 1, + sym_block, STATE(1309), 1, sym_comment, - ACTIONS(674), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PIPE, - [33011] = 5, + STATE(1560), 1, + sym_return_type, + [33168] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(1243), 1, - sym_classname, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(185), 1, + sym_block, STATE(1310), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33028] = 3, + STATE(1550), 1, + sym_return_type, + [33187] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1311), 1, sym_comment, - ACTIONS(1937), 4, + ACTIONS(1929), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_DOT, anon_sym_inherits, - [33041] = 5, - ACTIONS(1851), 1, - sym__regex_char_escaped, - ACTIONS(1939), 1, - anon_sym_SLASH, + [33200] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, + anon_sym_COMMA, + ACTIONS(1933), 1, + anon_sym_inherits, + STATE(1119), 1, + sym_block, STATE(1312), 1, sym_comment, - STATE(1317), 1, - aux_sym_regex_repeat1, - ACTIONS(1849), 2, - anon_sym_POUND, - sym__regex_char, - [33058] = 6, + [33219] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1717), 1, - anon_sym_GT_GT, - STATE(683), 1, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(1159), 1, sym_block, STATE(1313), 1, sym_comment, - STATE(1408), 1, - sym_return_type, - [33077] = 6, + STATE(1491), 1, + sym_parameter_list, + [33238] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, + ACTIONS(1723), 1, anon_sym_LPAREN, - STATE(810), 1, + STATE(1107), 1, sym_block, STATE(1314), 1, sym_comment, - STATE(1444), 1, + STATE(1493), 1, sym_parameter_list, - [33096] = 6, + [33257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(1941), 1, - anon_sym_COMMA, - ACTIONS(1943), 1, - anon_sym_inherits, - STATE(813), 1, - sym_block, + ACTIONS(1823), 1, + anon_sym_EQ_GT, STATE(1315), 1, sym_comment, - [33115] = 5, + ACTIONS(1935), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [33272] = 5, ACTIONS(1851), 1, sym__regex_char_escaped, - ACTIONS(1945), 1, + ACTIONS(1937), 1, anon_sym_SLASH, + STATE(1307), 1, + aux_sym_regex_repeat1, STATE(1316), 1, sym_comment, - STATE(1317), 1, - aux_sym_regex_repeat1, ACTIONS(1849), 2, anon_sym_POUND, sym__regex_char, - [33132] = 4, - ACTIONS(1947), 1, - anon_sym_SLASH, - ACTIONS(1952), 1, - sym__regex_char_escaped, - ACTIONS(1949), 2, - anon_sym_POUND, - sym__regex_char, - STATE(1317), 2, - sym_comment, - aux_sym_regex_repeat1, - [33147] = 6, + [33289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1863), 1, anon_sym_LBRACE, - ACTIONS(1715), 1, - anon_sym_LPAREN, - STATE(789), 1, - sym_block, - STATE(1318), 1, - sym_comment, - STATE(1449), 1, - sym_parameter_list, - [33166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1318), 1, + STATE(1267), 1, sym_classname, - STATE(1319), 1, + STATE(1317), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33180] = 4, + [33306] = 5, + ACTIONS(1851), 1, + sym__regex_char_escaped, + ACTIONS(1939), 1, + anon_sym_SLASH, + STATE(1307), 1, + aux_sym_regex_repeat1, + STATE(1318), 1, + sym_comment, + ACTIONS(1849), 2, + anon_sym_POUND, + sym__regex_char, + [33323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(352), 1, + sym_block, + STATE(1319), 1, + sym_comment, + STATE(1561), 1, + sym_return_type, + [33342] = 5, + ACTIONS(1941), 1, + anon_sym_SLASH, + ACTIONS(1945), 1, + sym__regex_char_escaped, + STATE(1316), 1, + aux_sym_regex_repeat1, STATE(1320), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - [33194] = 4, + ACTIONS(1943), 2, + anon_sym_POUND, + sym__regex_char, + [33359] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1184), 1, - sym_classname, STATE(1321), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33208] = 4, + ACTIONS(1947), 4, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_inherits, + [33372] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, - sym_classname, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(164), 1, + sym_block, STATE(1322), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33222] = 4, + STATE(1490), 1, + sym_parameter_list, + [33391] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1287), 1, - sym_classname, + ACTIONS(1461), 1, + anon_sym_LBRACE, + ACTIONS(1725), 1, + anon_sym_GT_GT, + STATE(817), 1, + sym_block, STATE(1323), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33236] = 5, + STATE(1448), 1, + sym_return_type, + [33410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1760), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, STATE(1324), 1, sym_comment, - STATE(1353), 1, - aux_sym_string_repeat1, - [33252] = 4, + ACTIONS(1949), 4, + sym__dq_string, + sym_interpolation, + sym_escape_sequence, + anon_sym_DQUOTE, + [33423] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1252), 1, + ACTIONS(1863), 1, + anon_sym_LBRACE, + STATE(1228), 1, sym_classname, STATE(1325), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33266] = 3, + [33440] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1326), 1, sym_comment, - ACTIONS(1959), 3, + ACTIONS(1951), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33278] = 4, + anon_sym_DOT, + anon_sym_inherits, + [33453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1186), 1, - sym_classname, + ACTIONS(1955), 1, + anon_sym_DOT, STATE(1327), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33292] = 3, + ACTIONS(1953), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33468] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LPAREN, + STATE(166), 1, + sym_block, STATE(1328), 1, sym_comment, - ACTIONS(732), 3, + STATE(1489), 1, + sym_parameter_list, + [33487] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1691), 1, anon_sym_LBRACE, + ACTIONS(1957), 1, anon_sym_COMMA, + ACTIONS(1959), 1, anon_sym_inherits, - [33304] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1314), 1, - sym_classname, + STATE(172), 1, + sym_block, STATE(1329), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33318] = 5, + [33506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, STATE(1330), 1, sym_comment, - STATE(1332), 1, - aux_sym_string_repeat1, - [33334] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1961), 4, anon_sym_LBRACE, - ACTIONS(1961), 1, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_inherits, - STATE(681), 1, - sym_block, + [33519] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1331), 1, sym_comment, - [33350] = 4, + ACTIONS(534), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33531] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - anon_sym_SQUOTE, - ACTIONS(1965), 1, - sym__fixed_string, - STATE(1332), 2, + STATE(1332), 1, sym_comment, - aux_sym_string_repeat1, - [33364] = 3, + ACTIONS(1963), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [33543] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1333), 1, sym_comment, - ACTIONS(1968), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(742), 3, + anon_sym_LBRACE, anon_sym_COMMA, - [33376] = 4, + anon_sym_inherits, + [33555] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1972), 1, - anon_sym_EQ, STATE(1334), 1, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1965), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [33390] = 3, + anon_sym_inherits, + [33567] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1969), 1, + anon_sym_EQ, STATE(1335), 1, sym_comment, - ACTIONS(1927), 3, - anon_sym_LBRACE, + ACTIONS(1967), 2, anon_sym_COMMA, - anon_sym_inherits, - [33402] = 4, + anon_sym_PIPE, + [33581] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1189), 1, - sym_classname, STATE(1336), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33416] = 4, + ACTIONS(720), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33593] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1276), 1, - sym_name_or_number, + STATE(1295), 1, + sym_classname, STATE(1337), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1719), 2, + sym_type, sym_name, - sym_number, - [33430] = 4, + [33607] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, - sym_classname, STATE(1338), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33444] = 4, + ACTIONS(1953), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33619] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1214), 1, + STATE(1266), 1, sym_classname, STATE(1339), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33458] = 4, + [33633] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1198), 1, sym_classname, STATE(1340), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33472] = 4, + [33647] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1185), 1, + STATE(1272), 1, sym_classname, STATE(1341), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33486] = 5, + [33661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, + STATE(1281), 1, + sym_classname, STATE(1342), 1, sym_comment, - STATE(1356), 1, - aux_sym_string_repeat1, - [33502] = 3, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33675] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1343), 1, sym_comment, - ACTIONS(1974), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1971), 3, anon_sym_COMMA, - [33514] = 5, + anon_sym_RPAREN, + anon_sym_PIPE, + [33687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, + STATE(1277), 1, + sym_classname, STATE(1344), 1, sym_comment, - [33530] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33701] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1188), 1, - sym_classname, STATE(1345), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33544] = 4, + ACTIONS(724), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33713] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1275), 1, - sym_classname, STATE(1346), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33558] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(754), 3, anon_sym_LBRACE, - ACTIONS(1976), 1, + anon_sym_COMMA, anon_sym_inherits, - STATE(331), 1, - sym_block, + [33725] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1347), 1, sym_comment, - [33574] = 4, + ACTIONS(538), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [33737] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1273), 1, - sym_classname, + ACTIONS(1973), 1, + anon_sym_SQUOTE, + ACTIONS(1975), 1, + sym__sq_string, STATE(1348), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33588] = 3, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, + [33753] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1759), 1, + anon_sym_LBRACK, STATE(1349), 1, sym_comment, - ACTIONS(1978), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33600] = 4, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_DOLLAR, + [33767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1247), 1, - sym_classname, + ACTIONS(1977), 1, + anon_sym_EQ, STATE(1350), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33614] = 5, + ACTIONS(1967), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [33781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1330), 1, - aux_sym_string_repeat1, + ACTIONS(1705), 1, + anon_sym_DOLLAR, + STATE(1335), 1, + sym_variable, STATE(1351), 1, sym_comment, - [33630] = 3, + STATE(1398), 1, + sym_regular_parameter, + [33797] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1199), 1, + sym_classname, STATE(1352), 1, sym_comment, - ACTIONS(1980), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33642] = 5, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, + STATE(1267), 1, + sym_classname, STATE(1353), 1, sym_comment, - [33658] = 3, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33825] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1354), 1, sym_comment, - ACTIONS(1982), 3, + ACTIONS(610), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33670] = 3, + anon_sym_inherits, + [33837] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1355), 1, sym_comment, - ACTIONS(1984), 3, + ACTIONS(1979), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [33682] = 5, + [33849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(1981), 1, anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, STATE(1356), 1, sym_comment, - [33698] = 4, + STATE(1370), 1, + aux_sym_single_quoted_string_repeat1, + [33865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1988), 1, - anon_sym_COMMA, + STATE(1228), 1, + sym_classname, STATE(1357), 1, sym_comment, - ACTIONS(1986), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [33712] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1200), 1, + STATE(1197), 1, sym_classname, STATE(1358), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33726] = 3, + [33893] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1248), 1, + sym_classname, STATE(1359), 1, sym_comment, - ACTIONS(1990), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_inherits, - [33738] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33907] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1286), 1, + STATE(1293), 1, sym_classname, STATE(1360), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [33752] = 4, + [33921] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, - sym_classname, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + anon_sym_inherits, + STATE(348), 1, + sym_block, STATE(1361), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33766] = 3, + [33937] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1291), 1, + sym_classname, STATE(1362), 1, sym_comment, - ACTIONS(1992), 3, - anon_sym_LBRACE, - anon_sym_GT_GT, - anon_sym_inherits, - [33778] = 3, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33951] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1314), 1, + sym_classname, STATE(1363), 1, sym_comment, - ACTIONS(630), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_inherits, - [33790] = 5, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, + STATE(1313), 1, + sym_classname, STATE(1364), 1, sym_comment, - [33806] = 3, + ACTIONS(1719), 2, + sym_type, + sym_name, + [33979] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1365), 1, sym_comment, - ACTIONS(1994), 3, + ACTIONS(618), 3, anon_sym_LBRACE, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_inherits, - [33818] = 5, + [33991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, + ACTIONS(1461), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + anon_sym_inherits, + STATE(815), 1, + sym_block, STATE(1366), 1, sym_comment, - [33834] = 3, + [34007] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1200), 1, + sym_classname, STATE(1367), 1, sym_comment, - ACTIONS(686), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_inherits, - [33846] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1996), 1, - anon_sym_COMMA, - ACTIONS(1999), 1, - anon_sym_COLON, - STATE(1368), 2, + STATE(1368), 1, sym_comment, - aux_sym__expressions_repeat1, - [33860] = 3, + ACTIONS(1987), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [34033] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_EQ_GT, STATE(1369), 1, sym_comment, - ACTIONS(598), 3, - anon_sym_LBRACE, + ACTIONS(1989), 2, anon_sym_COMMA, - anon_sym_inherits, - [33872] = 5, + anon_sym_RBRACK, + [34047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(1991), 1, anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1366), 1, - aux_sym_string_repeat1, STATE(1370), 1, sym_comment, - [33888] = 5, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, + [34063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - ACTIONS(2001), 1, - anon_sym_inherits, - STATE(1102), 1, - sym_block, + STATE(1246), 1, + sym_classname, STATE(1371), 1, sym_comment, - [33904] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34077] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1265), 1, - sym_classname, STATE(1372), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33918] = 3, + ACTIONS(1993), 3, + anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_inherits, + [34089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1373), 1, - sym_comment, - ACTIONS(2003), 3, + ACTIONS(1995), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33930] = 4, + ACTIONS(1998), 1, + anon_sym_COLON, + STATE(1373), 2, + sym_comment, + aux_sym__expressions_repeat1, + [34103] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1267), 1, - sym_classname, STATE(1374), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33944] = 3, + ACTIONS(2000), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [34115] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1475), 1, + anon_sym_LBRACE, + ACTIONS(2002), 1, + anon_sym_inherits, + STATE(704), 1, + sym_block, STATE(1375), 1, sym_comment, - ACTIONS(2005), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [33956] = 4, + [34131] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1187), 1, - sym_classname, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2004), 1, + anon_sym_SQUOTE, STATE(1376), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [33970] = 3, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, + [34147] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1377), 1, sym_comment, - ACTIONS(642), 3, - anon_sym_LBRACE, + ACTIONS(2006), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_inherits, - [33982] = 4, + [34159] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_LBRACK, STATE(1378), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_STAR, - anon_sym_DOLLAR, - [33996] = 5, + ACTIONS(598), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [34171] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1364), 1, - aux_sym_string_repeat1, STATE(1379), 1, sym_comment, - [34012] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1380), 1, - sym_comment, - ACTIONS(670), 3, + ACTIONS(732), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_inherits, - [34024] = 4, + [34183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1236), 1, + STATE(1283), 1, sym_classname, - STATE(1381), 1, + STATE(1380), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1719), 2, sym_type, sym_name, - [34038] = 3, + [34197] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2008), 1, + anon_sym_SQUOTE, + STATE(1381), 1, + sym_comment, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, + [34213] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2010), 1, + anon_sym_SQUOTE, + STATE(1376), 1, + aux_sym_single_quoted_string_repeat1, STATE(1382), 1, sym_comment, - ACTIONS(2007), 3, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DOLLAR, - [34050] = 5, + [34229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - anon_sym_inherits, - STATE(1029), 1, - sym_block, + STATE(1284), 1, + sym_classname, STATE(1383), 1, sym_comment, - [34066] = 5, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(2011), 1, - anon_sym_inherits, - STATE(806), 1, - sym_block, + ACTIONS(2014), 1, + anon_sym_COMMA, STATE(1384), 1, sym_comment, - [34082] = 3, + ACTIONS(2012), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [34257] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, - sym_comment, - ACTIONS(2013), 3, + ACTIONS(1477), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2016), 1, anon_sym_inherits, - [34094] = 5, + STATE(1134), 1, + sym_block, + STATE(1385), 1, + sym_comment, + [34273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_DOLLAR, - STATE(1349), 1, - sym_regular_parameter, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(2018), 1, + anon_sym_inherits, + STATE(186), 1, + sym_block, STATE(1386), 1, sym_comment, - STATE(1393), 1, - sym_variable, - [34110] = 4, + [34289] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1243), 1, - sym_classname, STATE(1387), 1, sym_comment, - ACTIONS(1711), 2, - sym_type, - sym_name, - [34124] = 5, + ACTIONS(2020), 3, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DOLLAR, + [34301] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1332), 1, - aux_sym_string_repeat1, + STATE(1203), 1, + sym_classname, STATE(1388), 1, sym_comment, - [34140] = 5, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_DOLLAR, - STATE(1334), 1, - sym_variable, - STATE(1349), 1, - sym_regular_parameter, + STATE(1311), 1, + sym_name_or_number, STATE(1389), 1, sym_comment, - [34156] = 3, + ACTIONS(1679), 2, + sym_name, + sym_number, + [34329] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1390), 1, sym_comment, - ACTIONS(568), 3, + ACTIONS(2022), 3, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_inherits, - [34168] = 4, + [34341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_EQ_GT, + STATE(1216), 1, + sym_classname, STATE(1391), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [34182] = 5, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1344), 1, - aux_sym_string_repeat1, + ACTIONS(1471), 1, + anon_sym_LBRACE, + ACTIONS(2024), 1, + anon_sym_inherits, + STATE(1038), 1, + sym_block, STATE(1392), 1, sym_comment, - [34198] = 4, + [34371] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_EQ, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2026), 1, + anon_sym_SQUOTE, STATE(1393), 1, sym_comment, - ACTIONS(1970), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [34212] = 3, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, + [34387] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1391), 1, + anon_sym_COMMA, + ACTIONS(2028), 1, + anon_sym_COLON, + STATE(1373), 1, + aux_sym__expressions_repeat1, STATE(1394), 1, sym_comment, - ACTIONS(524), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_inherits, - [34224] = 5, + [34403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - ACTIONS(2019), 1, - anon_sym_inherits, - STATE(164), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2030), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_single_quoted_string_repeat1, STATE(1395), 1, sym_comment, - [34240] = 5, + [34419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1372), 1, - anon_sym_COMMA, - ACTIONS(2021), 1, - anon_sym_COLON, - STATE(1368), 1, - aux_sym__expressions_repeat1, - STATE(1396), 1, + ACTIONS(2032), 1, + anon_sym_SQUOTE, + ACTIONS(2034), 1, + sym__sq_string, + STATE(1396), 2, sym_comment, - [34256] = 3, + aux_sym_single_quoted_string_repeat1, + [34433] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1397), 1, sym_comment, - ACTIONS(2023), 3, - anon_sym_LBRACE, - anon_sym_GT_GT, - anon_sym_inherits, - [34268] = 5, + ACTIONS(2037), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [34445] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_SQUOTE, - ACTIONS(1957), 1, - sym__fixed_string, - STATE(1388), 1, - aux_sym_string_repeat1, STATE(1398), 1, sym_comment, - [34284] = 4, + ACTIONS(2039), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [34457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2041), 1, + anon_sym_SQUOTE, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, STATE(1399), 1, sym_comment, - [34297] = 4, + [34473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2043), 1, + anon_sym_SQUOTE, + STATE(1396), 1, + aux_sym_single_quoted_string_repeat1, STATE(1400), 1, sym_comment, - [34310] = 4, + [34489] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(190), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2045), 1, + anon_sym_SQUOTE, + STATE(1381), 1, + aux_sym_single_quoted_string_repeat1, STATE(1401), 1, sym_comment, - [34323] = 4, + [34505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_COMMA, - ACTIONS(2027), 1, - anon_sym_RBRACK, + ACTIONS(1705), 1, + anon_sym_DOLLAR, + STATE(1350), 1, + sym_variable, + STATE(1398), 1, + sym_regular_parameter, STATE(1402), 1, sym_comment, - [34336] = 4, + [34521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2029), 1, - anon_sym_COMMA, - ACTIONS(2031), 1, - anon_sym_RBRACK, STATE(1403), 1, sym_comment, - [34349] = 4, + ACTIONS(2047), 3, + anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_inherits, + [34533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2049), 1, + anon_sym_SQUOTE, + STATE(1393), 1, + aux_sym_single_quoted_string_repeat1, STATE(1404), 1, sym_comment, - [34362] = 4, + [34549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_block, + STATE(1201), 1, + sym_classname, STATE(1405), 1, sym_comment, - [34375] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_COMMA, - ACTIONS(2035), 1, - anon_sym_RPAREN, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2051), 1, + anon_sym_SQUOTE, + STATE(1400), 1, + aux_sym_single_quoted_string_repeat1, STATE(1406), 1, sym_comment, - [34388] = 4, + [34579] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(677), 1, - sym_block, STATE(1407), 1, sym_comment, - [34401] = 4, + ACTIONS(2053), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [34591] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(651), 1, - sym_block, + ACTIONS(1975), 1, + sym__sq_string, + ACTIONS(2055), 1, + anon_sym_SQUOTE, + STATE(1399), 1, + aux_sym_single_quoted_string_repeat1, STATE(1408), 1, sym_comment, - [34414] = 4, + [34607] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2037), 1, - anon_sym_RBRACE, - ACTIONS(2039), 1, - anon_sym_COMMA, STATE(1409), 1, sym_comment, - [34427] = 4, + ACTIONS(2057), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_inherits, + [34619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2041), 1, - anon_sym_SEMI, - ACTIONS(2043), 1, - anon_sym_RBRACE, + STATE(1328), 1, + sym_classname, STATE(1410), 1, sym_comment, - [34440] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(198), 1, - sym_block, + STATE(1322), 1, + sym_classname, STATE(1411), 1, sym_comment, - [34453] = 4, + ACTIONS(1719), 2, + sym_type, + sym_name, + [34647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(199), 1, - sym_block, + ACTIONS(2059), 1, + anon_sym_LPAREN, STATE(1412), 1, sym_comment, - [34466] = 4, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + [34661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(1128), 1, + STATE(155), 1, sym_block, STATE(1413), 1, sym_comment, - [34479] = 4, + [34674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(2061), 1, anon_sym_RBRACE, - ACTIONS(2047), 1, + ACTIONS(2063), 1, anon_sym_COMMA, STATE(1414), 1, sym_comment, - [34492] = 4, + [34687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2065), 1, anon_sym_RBRACE, - ACTIONS(2051), 1, + ACTIONS(2067), 1, anon_sym_COMMA, STATE(1415), 1, sym_comment, - [34505] = 4, + [34700] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_block, STATE(1416), 1, sym_comment, - [34518] = 4, + ACTIONS(2069), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [34711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(674), 1, - sym_block, + ACTIONS(2071), 1, + anon_sym_COMMA, + ACTIONS(2073), 1, + anon_sym_RBRACK, STATE(1417), 1, sym_comment, - [34531] = 4, + [34724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2053), 1, - sym_type, - ACTIONS(2055), 1, - sym_name, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(829), 1, + sym_block, STATE(1418), 1, sym_comment, - [34544] = 4, + [34737] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(2075), 1, anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2077), 1, anon_sym_COMMA, STATE(1419), 1, sym_comment, - [34557] = 4, + [34750] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - sym_type, - ACTIONS(2063), 1, - sym_name, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(828), 1, + sym_block, STATE(1420), 1, sym_comment, - [34570] = 4, + [34763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_block, + ACTIONS(2079), 1, + sym_type, + ACTIONS(2081), 1, + sym_name, STATE(1421), 1, sym_comment, - [34583] = 4, + [34776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_block, + ACTIONS(2083), 1, + anon_sym_RBRACE, + ACTIONS(2085), 1, + anon_sym_COMMA, STATE(1422), 1, sym_comment, - [34596] = 4, + [34789] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(673), 1, + STATE(1153), 1, sym_block, STATE(1423), 1, sym_comment, - [34609] = 4, + [34802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(787), 1, - sym_block, + ACTIONS(2087), 1, + anon_sym_COMMA, + ACTIONS(2089), 1, + anon_sym_RBRACK, STATE(1424), 1, sym_comment, - [34622] = 4, + [34815] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(1147), 1, + STATE(1115), 1, sym_block, STATE(1425), 1, sym_comment, - [34635] = 4, + [34828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(804), 1, + STATE(168), 1, sym_block, STATE(1426), 1, sym_comment, - [34648] = 4, + [34841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2065), 1, + ACTIONS(2091), 1, + anon_sym_RBRACE, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(2067), 1, - anon_sym_RBRACK, STATE(1427), 1, sym_comment, - [34661] = 4, + [34854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_block, + ACTIONS(2095), 1, + anon_sym_RBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, STATE(1428), 1, sym_comment, - [34674] = 4, + [34867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_RBRACE, - ACTIONS(2071), 1, + ACTIONS(2099), 1, anon_sym_COMMA, + ACTIONS(2101), 1, + anon_sym_RPAREN, STATE(1429), 1, sym_comment, - [34687] = 4, + [34880] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, - sym_type, - ACTIONS(2075), 1, - sym_name, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_block, STATE(1430), 1, sym_comment, - [34700] = 4, + [34893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_COMMA, - ACTIONS(2079), 1, - anon_sym_RPAREN, STATE(1431), 1, sym_comment, - [34713] = 4, + ACTIONS(895), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + [34904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_block, + ACTIONS(2103), 1, + sym_type, STATE(1432), 1, sym_comment, - [34726] = 4, + STATE(1583), 1, + sym__parameter_type, + [34917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(1129), 1, + STATE(1130), 1, sym_block, STATE(1433), 1, sym_comment, - [34739] = 4, + [34930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(772), 1, + STATE(1121), 1, sym_block, STATE(1434), 1, sym_comment, - [34752] = 3, + [34943] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2105), 1, + anon_sym_RBRACE, + ACTIONS(2107), 1, + anon_sym_COMMA, STATE(1435), 1, sym_comment, - ACTIONS(2081), 2, - anon_sym_LBRACE, - anon_sym_GT_GT, - [34763] = 4, + [34956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_RBRACE, - ACTIONS(2085), 1, - anon_sym_COMMA, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_block, STATE(1436), 1, sym_comment, - [34776] = 3, + [34969] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2109), 1, + anon_sym_RBRACE, + ACTIONS(2111), 1, + anon_sym_COMMA, STATE(1437), 1, sym_comment, - ACTIONS(2087), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [34787] = 4, + [34982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1027), 1, - sym_block, + ACTIONS(2113), 1, + anon_sym_RBRACE, + ACTIONS(2115), 1, + anon_sym_COMMA, STATE(1438), 1, sym_comment, - [34800] = 4, + [34995] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(1028), 1, + STATE(1105), 1, sym_block, STATE(1439), 1, sym_comment, - [34813] = 4, + [35008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_COMMA, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_block, STATE(1440), 1, sym_comment, - [34826] = 4, + [35021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(672), 1, - sym_block, + ACTIONS(2117), 1, + anon_sym_COMMA, + ACTIONS(2119), 1, + anon_sym_RBRACK, STATE(1441), 1, sym_comment, - [34839] = 4, + [35034] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1031), 1, - sym_block, + ACTIONS(2121), 1, + anon_sym_SEMI, + ACTIONS(2123), 1, + anon_sym_RBRACE, STATE(1442), 1, sym_comment, - [34852] = 4, + [35047] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1122), 1, - sym_block, STATE(1443), 1, sym_comment, - [34865] = 4, + ACTIONS(2125), 2, + anon_sym_LBRACE, + anon_sym_GT_GT, + [35058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_block, + ACTIONS(2127), 1, + sym_type, + ACTIONS(2129), 1, + sym_name, STATE(1444), 1, sym_comment, - [34878] = 4, + [35071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_COMMA, - ACTIONS(2095), 1, - anon_sym_RBRACK, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym_block, STATE(1445), 1, sym_comment, - [34891] = 4, + [35084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_COMMA, - ACTIONS(2099), 1, - anon_sym_RBRACK, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(1101), 1, + sym_block, STATE(1446), 1, sym_comment, - [34904] = 3, + [35097] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1447), 1, sym_comment, - ACTIONS(2101), 2, + ACTIONS(2131), 2, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - [34915] = 4, + [35108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - anon_sym_COMMA, - ACTIONS(2105), 1, - anon_sym_RBRACK, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym_block, STATE(1448), 1, sym_comment, - [34928] = 4, + [35121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(808), 1, - sym_block, + ACTIONS(2133), 1, + anon_sym_COMMA, + ACTIONS(2135), 1, + anon_sym_RBRACK, STATE(1449), 1, sym_comment, - [34941] = 4, + [35134] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_block, + ACTIONS(2137), 1, + anon_sym_RBRACE, + ACTIONS(2139), 1, + anon_sym_COMMA, STATE(1450), 1, sym_comment, - [34954] = 4, + [35147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(162), 1, + STATE(205), 1, sym_block, STATE(1451), 1, sym_comment, - [34967] = 4, + [35160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - STATE(1039), 1, + STATE(1036), 1, sym_block, STATE(1452), 1, sym_comment, - [34980] = 3, + [35173] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_block, STATE(1453), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [34991] = 3, + [35186] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_COMMA, + ACTIONS(2143), 1, + anon_sym_RBRACK, STATE(1454), 1, sym_comment, - ACTIONS(2107), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [35002] = 4, + [35199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(2145), 1, anon_sym_LBRACE, - STATE(786), 1, + STATE(845), 1, sym_block, STATE(1455), 1, sym_comment, - [35015] = 3, + [35212] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_block, STATE(1456), 1, sym_comment, - ACTIONS(2109), 2, - anon_sym_LBRACE, - anon_sym_GT_GT, - [35026] = 4, + [35225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1047), 1, - sym_block, + ACTIONS(2147), 1, + anon_sym_COMMA, + ACTIONS(2149), 1, + anon_sym_RBRACK, STATE(1457), 1, sym_comment, - [35039] = 4, + [35238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(1048), 1, + STATE(826), 1, sym_block, STATE(1458), 1, sym_comment, - [35052] = 4, + [35251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym_block, + ACTIONS(2151), 1, + sym_type, STATE(1459), 1, sym_comment, - [35065] = 4, + STATE(1583), 1, + sym__parameter_type, + [35264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(823), 1, sym_block, STATE(1460), 1, sym_comment, - [35078] = 4, + [35277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_block, + ACTIONS(2153), 1, + sym_type, + ACTIONS(2155), 1, + sym_name, STATE(1461), 1, sym_comment, - [35091] = 4, + [35290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_block, + ACTIONS(2157), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + anon_sym_RBRACK, STATE(1462), 1, sym_comment, - [35104] = 4, + [35303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2111), 1, - anon_sym_RBRACE, - ACTIONS(2113), 1, - anon_sym_COMMA, STATE(1463), 1, sym_comment, - [35117] = 4, + ACTIONS(2161), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2115), 1, - anon_sym_RBRACE, - ACTIONS(2117), 1, - anon_sym_COMMA, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_block, STATE(1464), 1, sym_comment, - [35130] = 4, + [35327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2119), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(840), 1, + STATE(811), 1, sym_block, STATE(1465), 1, sym_comment, - [35143] = 4, + [35340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2121), 1, - anon_sym_RBRACE, - ACTIONS(2123), 1, - anon_sym_COMMA, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_block, STATE(1466), 1, sym_comment, - [35156] = 4, + [35353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(200), 1, - sym_block, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_RBRACK, STATE(1467), 1, sym_comment, - [35169] = 4, + [35366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(216), 1, sym_block, STATE(1468), 1, sym_comment, - [35182] = 4, + [35379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1415), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1055), 1, sym_block, STATE(1469), 1, sym_comment, - [35195] = 4, + [35392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_COMMA, - ACTIONS(2127), 1, - anon_sym_RBRACK, + ACTIONS(2167), 1, + sym_type, + ACTIONS(2169), 1, + sym_name, STATE(1470), 1, sym_comment, - [35208] = 3, + [35405] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1059), 1, + sym_block, STATE(1471), 1, sym_comment, - ACTIONS(2129), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [35219] = 4, + [35418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - anon_sym_RBRACK, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_block, STATE(1472), 1, sym_comment, - [35232] = 3, + [35431] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_block, STATE(1473), 1, sym_comment, - ACTIONS(1579), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - [35243] = 4, + [35444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2135), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_PIPE, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_block, STATE(1474), 1, sym_comment, - [35256] = 3, + [35457] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1471), 1, + anon_sym_LBRACE, + STATE(1063), 1, + sym_block, STATE(1475), 1, sym_comment, - ACTIONS(2139), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [35267] = 4, + [35470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2141), 1, - anon_sym_COMMA, - ACTIONS(2143), 1, - anon_sym_RBRACK, STATE(1476), 1, sym_comment, - [35280] = 4, + ACTIONS(2171), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + [35481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_block, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(2175), 1, + anon_sym_COMMA, STATE(1477), 1, sym_comment, - [35293] = 4, + [35494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2145), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - ACTIONS(2147), 1, - anon_sym_LBRACK, + STATE(1157), 1, + sym_block, STATE(1478), 1, sym_comment, - [35306] = 4, + [35507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2149), 1, + ACTIONS(2177), 1, + anon_sym_SEMI, + ACTIONS(2179), 1, anon_sym_RBRACE, - ACTIONS(2151), 1, - anon_sym_COMMA, STATE(1479), 1, sym_comment, - [35319] = 4, + [35520] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2153), 1, + ACTIONS(2181), 1, anon_sym_RBRACE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_COMMA, STATE(1480), 1, sym_comment, - [35332] = 4, + [35533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1101), 1, - sym_block, STATE(1481), 1, sym_comment, - [35345] = 4, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [35544] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(1072), 1, sym_block, STATE(1482), 1, sym_comment, - [35358] = 4, + [35557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(1471), 1, anon_sym_LBRACE, - STATE(794), 1, + STATE(1075), 1, sym_block, STATE(1483), 1, sym_comment, - [35371] = 4, + [35570] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2157), 1, + ACTIONS(2187), 1, sym_type, - ACTIONS(2159), 1, + ACTIONS(2189), 1, sym_name, STATE(1484), 1, sym_comment, - [35384] = 4, + [35583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2161), 1, - sym_type, STATE(1485), 1, sym_comment, - STATE(1579), 1, - sym__parameter_type, - [35397] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2163), 1, + ACTIONS(2191), 2, anon_sym_SEMI, - ACTIONS(2165), 1, anon_sym_RBRACE, + [35594] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2193), 1, + anon_sym_COMMA, + ACTIONS(2195), 1, + anon_sym_RBRACK, STATE(1486), 1, sym_comment, - [35410] = 3, + [35607] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_COMMA, + ACTIONS(2199), 1, + anon_sym_RPAREN, STATE(1487), 1, sym_comment, - ACTIONS(2167), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [35421] = 4, + [35620] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2169), 1, - anon_sym_COMMA, - ACTIONS(2171), 1, - anon_sym_RBRACK, STATE(1488), 1, sym_comment, - [35434] = 4, + ACTIONS(2201), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(207), 1, sym_block, STATE(1489), 1, sym_comment, - [35447] = 4, + [35644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym_type, - ACTIONS(2175), 1, - sym_name, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(154), 1, + sym_block, STATE(1490), 1, sym_comment, - [35460] = 4, + [35657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2179), 1, - anon_sym_RBRACK, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_block, STATE(1491), 1, sym_comment, - [35473] = 4, + [35670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2181), 1, - anon_sym_COMMA, - ACTIONS(2183), 1, - anon_sym_RBRACK, STATE(1492), 1, sym_comment, - [35486] = 3, + ACTIONS(2203), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [35681] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1477), 1, + anon_sym_LBRACE, + STATE(1118), 1, + sym_block, STATE(1493), 1, sym_comment, - ACTIONS(2185), 2, - sym__fixed_string, - anon_sym_SQUOTE, - [35497] = 4, + [35694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(705), 1, + STATE(167), 1, sym_block, STATE(1494), 1, sym_comment, - [35510] = 3, + [35707] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2205), 1, + anon_sym_SEMI, + ACTIONS(2207), 1, + anon_sym_RBRACE, STATE(1495), 1, sym_comment, - ACTIONS(2187), 2, - anon_sym_LBRACE, - anon_sym_GT_GT, - [35521] = 4, + [35720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_block, + ACTIONS(2209), 1, + anon_sym_RBRACE, + ACTIONS(2211), 1, + anon_sym_COMMA, STATE(1496), 1, sym_comment, - [35534] = 4, + [35733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_block, STATE(1497), 1, sym_comment, - [35547] = 4, + ACTIONS(2213), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [35744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2189), 1, - anon_sym_RBRACE, - ACTIONS(2191), 1, - anon_sym_COMMA, STATE(1498), 1, sym_comment, - [35560] = 4, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_GT_GT, + [35755] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2193), 1, - anon_sym_COMMA, - ACTIONS(2195), 1, - anon_sym_RBRACK, STATE(1499), 1, sym_comment, - [35573] = 4, + ACTIONS(1031), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + [35766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_block, + ACTIONS(2217), 1, + sym_type, + ACTIONS(2219), 1, + sym_name, STATE(1500), 1, sym_comment, - [35586] = 4, + [35779] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_block, + ACTIONS(2221), 1, + anon_sym_COMMA, + ACTIONS(2223), 1, + anon_sym_RBRACK, STATE(1501), 1, sym_comment, - [35599] = 4, + [35792] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2197), 1, - anon_sym_COMMA, - ACTIONS(2199), 1, - anon_sym_RBRACK, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym_block, STATE(1502), 1, sym_comment, - [35612] = 4, + [35805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(166), 1, + STATE(703), 1, sym_block, STATE(1503), 1, sym_comment, - [35625] = 4, + [35818] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(722), 1, - sym_block, STATE(1504), 1, sym_comment, - [35638] = 4, + ACTIONS(1611), 2, + anon_sym_EQ_GT, + anon_sym_PLUS_GT, + [35829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_block, + ACTIONS(2225), 1, + anon_sym_RBRACE, + ACTIONS(2227), 1, + anon_sym_COMMA, STATE(1505), 1, sym_comment, - [35651] = 4, + [35842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2193), 1, + ACTIONS(2229), 1, anon_sym_COMMA, - ACTIONS(2201), 1, + ACTIONS(2231), 1, anon_sym_RBRACK, STATE(1506), 1, sym_comment, - [35664] = 4, + [35855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2203), 1, - anon_sym_RBRACE, - ACTIONS(2205), 1, + ACTIONS(2233), 1, anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_RBRACK, STATE(1507), 1, sym_comment, - [35677] = 4, + [35868] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, - sym_type, STATE(1508), 1, sym_comment, - STATE(1579), 1, - sym__parameter_type, - [35690] = 4, + ACTIONS(2237), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [35879] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - sym_type, STATE(1509), 1, sym_comment, - STATE(1579), 1, - sym__parameter_type, - [35703] = 4, + ACTIONS(2239), 2, + sym__sq_string, + anon_sym_SQUOTE, + [35890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(333), 1, - sym_block, STATE(1510), 1, sym_comment, - [35716] = 4, + ACTIONS(2241), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [35901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2209), 1, - anon_sym_SEMI, - ACTIONS(2211), 1, + ACTIONS(2243), 1, anon_sym_RBRACE, + ACTIONS(2245), 1, + anon_sym_COMMA, STATE(1511), 1, sym_comment, - [35729] = 4, + [35914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2213), 1, - anon_sym_RBRACE, - ACTIONS(2215), 1, - anon_sym_COMMA, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_block, STATE(1512), 1, sym_comment, - [35742] = 4, + [35927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_COMMA, - ACTIONS(2219), 1, - anon_sym_RBRACK, STATE(1513), 1, sym_comment, - [35755] = 4, + ACTIONS(2247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [35938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2221), 1, - anon_sym_RBRACE, - ACTIONS(2223), 1, + ACTIONS(2249), 1, anon_sym_COMMA, + ACTIONS(2251), 1, + anon_sym_RBRACK, STATE(1514), 1, sym_comment, - [35768] = 3, + [35951] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1515), 1, sym_comment, - ACTIONS(2225), 2, + ACTIONS(1989), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [35779] = 3, + anon_sym_RBRACK, + [35962] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(814), 1, + sym_block, STATE(1516), 1, sym_comment, - ACTIONS(2227), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [35790] = 4, + [35975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2253), 1, anon_sym_COMMA, - ACTIONS(2231), 1, + ACTIONS(2255), 1, anon_sym_RBRACK, STATE(1517), 1, sym_comment, - [35803] = 4, + [35988] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LBRACE, - STATE(183), 1, - sym_block, STATE(1518), 1, sym_comment, - [35816] = 3, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [35999] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2259), 1, + anon_sym_SEMI, + ACTIONS(2261), 1, + anon_sym_RBRACE, STATE(1519), 1, sym_comment, - ACTIONS(2233), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [35827] = 3, + [36012] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2263), 1, + anon_sym_COMMA, + ACTIONS(2265), 1, + anon_sym_RBRACK, STATE(1520), 1, sym_comment, - ACTIONS(2235), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [35838] = 4, + [36025] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(2267), 1, + anon_sym_RBRACE, + ACTIONS(2269), 1, anon_sym_COMMA, - ACTIONS(2239), 1, - anon_sym_RBRACK, STATE(1521), 1, sym_comment, - [35851] = 4, + [36038] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RBRACK, + ACTIONS(1721), 1, + sym_type, STATE(1522), 1, sym_comment, - [35864] = 4, + STATE(1583), 1, + sym__parameter_type, + [36051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_SEMI, - ACTIONS(2247), 1, - anon_sym_RBRACE, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_block, STATE(1523), 1, sym_comment, - [35877] = 4, + [36064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(785), 1, - sym_block, STATE(1524), 1, sym_comment, - [35890] = 4, + ACTIONS(2271), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [36075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_block, + ACTIONS(2273), 1, + sym_type, STATE(1525), 1, sym_comment, - [35903] = 4, + STATE(1583), 1, + sym__parameter_type, + [36088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_block, + ACTIONS(2275), 1, + anon_sym_COMMA, + ACTIONS(2277), 1, + anon_sym_RPAREN, STATE(1526), 1, sym_comment, - [35916] = 4, + [36101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(679), 1, + STATE(722), 1, sym_block, STATE(1527), 1, sym_comment, - [35929] = 4, + [36114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1467), 1, + ACTIONS(1687), 1, anon_sym_LBRACE, - STATE(694), 1, + STATE(346), 1, sym_block, STATE(1528), 1, sym_comment, - [35942] = 4, + [36127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(363), 1, + STATE(817), 1, sym_block, STATE(1529), 1, sym_comment, - [35955] = 3, + [36140] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_block, STATE(1530), 1, sym_comment, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [35966] = 3, + [36153] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(347), 1, + sym_block, STATE(1531), 1, sym_comment, - ACTIONS(2251), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [35977] = 4, + [36166] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, - STATE(367), 1, + STATE(791), 1, sym_block, STATE(1532), 1, sym_comment, - [35990] = 4, + [36179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2253), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, + ACTIONS(2229), 1, anon_sym_COMMA, + ACTIONS(2279), 1, + anon_sym_RBRACK, STATE(1533), 1, sym_comment, - [36003] = 3, + [36192] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(1534), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [36014] = 3, + ACTIONS(2281), 2, + anon_sym_LBRACE, + anon_sym_GT_GT, + [36203] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym_block, STATE(1535), 1, sym_comment, - ACTIONS(2259), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [36025] = 4, + [36216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, + ACTIONS(2283), 1, anon_sym_COMMA, - ACTIONS(2263), 1, + ACTIONS(2285), 1, anon_sym_RBRACK, STATE(1536), 1, sym_comment, - [36038] = 4, + [36229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - sym_type, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(352), 1, + sym_block, STATE(1537), 1, sym_comment, - STATE(1579), 1, - sym__parameter_type, - [36051] = 3, + [36242] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2287), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + anon_sym_COMMA, STATE(1538), 1, sym_comment, - ACTIONS(965), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - [36062] = 4, + [36255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2265), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, - anon_sym_COMMA, + ACTIONS(2291), 1, + anon_sym_LBRACE, + ACTIONS(2293), 1, + anon_sym_LBRACK, STATE(1539), 1, sym_comment, - [36075] = 4, + [36268] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2269), 1, - anon_sym_COMMA, - ACTIONS(2271), 1, - anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(165), 1, + sym_block, STATE(1540), 1, sym_comment, - [36088] = 4, + [36281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1477), 1, anon_sym_LBRACE, - STATE(364), 1, + STATE(1147), 1, sym_block, STATE(1541), 1, sym_comment, - [36101] = 4, + [36294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_COMMA, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(723), 1, + sym_block, STATE(1542), 1, sym_comment, - [36114] = 4, + [36307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_block, + ACTIONS(2295), 1, + anon_sym_COMMA, + ACTIONS(2297), 1, + anon_sym_RBRACK, STATE(1543), 1, sym_comment, - [36127] = 4, + [36320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(358), 1, - sym_block, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2301), 1, + anon_sym_PIPE, STATE(1544), 1, sym_comment, - [36140] = 4, + [36333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(721), 1, sym_block, STATE(1545), 1, sym_comment, - [36153] = 4, + [36346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, - sym_type, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_block, STATE(1546), 1, sym_comment, - STATE(1579), 1, - sym__parameter_type, - [36166] = 3, + [36359] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_block, STATE(1547), 1, sym_comment, - ACTIONS(891), 2, - anon_sym_EQ_GT, - anon_sym_PLUS_GT, - [36177] = 4, + [36372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_block, + ACTIONS(2303), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + anon_sym_COMMA, STATE(1548), 1, sym_comment, - [36190] = 4, + [36385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(355), 1, + STATE(720), 1, sym_block, STATE(1549), 1, sym_comment, - [36203] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2279), 1, - sym_type, - ACTIONS(2281), 1, - sym_name, - STATE(1550), 1, - sym_comment, - [36216] = 4, + [36398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1657), 1, + ACTIONS(1691), 1, anon_sym_LBRACE, - STATE(346), 1, + STATE(193), 1, sym_block, - STATE(1551), 1, + STATE(1550), 1, sym_comment, - [36229] = 4, + [36411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, + ACTIONS(1861), 1, sym_type, - STATE(1552), 1, + STATE(1551), 1, sym_comment, - STATE(1579), 1, + STATE(1583), 1, sym__parameter_type, - [36242] = 4, + [36424] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1475), 1, anon_sym_LBRACE, - STATE(208), 1, + STATE(714), 1, sym_block, + STATE(1552), 1, + sym_comment, + [36437] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2307), 1, + anon_sym_COMMA, + ACTIONS(2309), 1, + anon_sym_RBRACK, STATE(1553), 1, sym_comment, - [36255] = 3, + [36450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2285), 1, - anon_sym_RPAREN, + ACTIONS(2311), 1, + sym_type, STATE(1554), 1, sym_comment, - [36265] = 3, + STATE(1583), 1, + sym__parameter_type, + [36463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - sym_type, + ACTIONS(2313), 1, + anon_sym_RBRACE, + ACTIONS(2315), 1, + anon_sym_COMMA, STATE(1555), 1, sym_comment, - [36275] = 3, + [36476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, - sym__variable_name, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2319), 1, + anon_sym_RBRACK, STATE(1556), 1, sym_comment, - [36285] = 3, + [36489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2291), 1, + ACTIONS(1461), 1, anon_sym_LBRACE, + STATE(767), 1, + sym_block, STATE(1557), 1, sym_comment, - [36295] = 3, + [36502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_RPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(719), 1, + sym_block, STATE(1558), 1, sym_comment, - [36305] = 3, + [36515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - sym_type, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_block, STATE(1559), 1, sym_comment, - [36315] = 3, + [36528] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_EQ, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_block, STATE(1560), 1, sym_comment, - [36325] = 3, + [36541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_RPAREN, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_block, STATE(1561), 1, sym_comment, - [36335] = 3, + [36554] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2301), 1, - anon_sym_RPAREN, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(384), 1, + sym_block, STATE(1562), 1, sym_comment, - [36345] = 3, + [36567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_RPAREN, + ACTIONS(1475), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_block, STATE(1563), 1, sym_comment, - [36355] = 3, + [36580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_RPAREN, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_block, STATE(1564), 1, sym_comment, - [36365] = 3, + [36593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, - anon_sym_RPAREN, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_block, STATE(1565), 1, sym_comment, - [36375] = 3, + [36606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_EQ, + ACTIONS(1687), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym_block, STATE(1566), 1, sym_comment, - [36385] = 3, + [36619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2311), 1, - anon_sym_RBRACE, + ACTIONS(1691), 1, + anon_sym_LBRACE, + STATE(163), 1, + sym_block, STATE(1567), 1, sym_comment, - [36395] = 3, + [36632] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2313), 1, - sym_type, + ACTIONS(2321), 1, + anon_sym_RPAREN, STATE(1568), 1, sym_comment, - [36405] = 3, + [36642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2315), 1, - anon_sym_COLON, + ACTIONS(2323), 1, + anon_sym_RPAREN, STATE(1569), 1, sym_comment, - [36415] = 3, + [36652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, - sym__heredoc_start, + ACTIONS(2325), 1, + anon_sym_RPAREN, STATE(1570), 1, sym_comment, - [36425] = 3, + [36662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2319), 1, + ACTIONS(2327), 1, anon_sym_RPAREN, STATE(1571), 1, sym_comment, - [36435] = 3, + [36672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2321), 1, + ACTIONS(2329), 1, anon_sym_RPAREN, STATE(1572), 1, sym_comment, - [36445] = 3, + [36682] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2323), 1, + ACTIONS(2331), 1, anon_sym_RPAREN, STATE(1573), 1, sym_comment, - [36455] = 3, + [36692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2325), 1, - anon_sym_RPAREN, + ACTIONS(2333), 1, + anon_sym_EQ, STATE(1574), 1, sym_comment, - [36465] = 3, - ACTIONS(2327), 1, + [36702] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2329), 1, - aux_sym_comment_token1, + ACTIONS(2335), 1, + anon_sym_RPAREN, STATE(1575), 1, sym_comment, - [36475] = 3, + [36712] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2331), 1, + ACTIONS(2337), 1, anon_sym_RPAREN, STATE(1576), 1, sym_comment, - [36485] = 3, + [36722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2339), 1, anon_sym_RPAREN, STATE(1577), 1, sym_comment, - [36495] = 3, + [36732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_RPAREN, STATE(1578), 1, sym_comment, - [36505] = 3, + [36742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2337), 1, - anon_sym_EQ, + ACTIONS(2343), 1, + anon_sym_RPAREN, STATE(1579), 1, sym_comment, - [36515] = 3, + [36752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2339), 1, - sym__variable_name, + ACTIONS(2345), 1, + anon_sym_EQ, STATE(1580), 1, sym_comment, - [36525] = 3, + [36762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2341), 1, - anon_sym_EQ, + ACTIONS(2347), 1, + anon_sym_RBRACE, STATE(1581), 1, sym_comment, - [36535] = 3, + [36772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_EQ, + ACTIONS(2349), 1, + sym_type, STATE(1582), 1, sym_comment, - [36545] = 3, + [36782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, - anon_sym_RPAREN, + ACTIONS(2351), 1, + anon_sym_EQ, STATE(1583), 1, sym_comment, - [36555] = 3, + [36792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_RPAREN, + ACTIONS(2353), 1, + anon_sym_RBRACE, STATE(1584), 1, sym_comment, - [36565] = 3, + [36802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, - anon_sym_LPAREN, + ACTIONS(2355), 1, + anon_sym_RPAREN, STATE(1585), 1, sym_comment, - [36575] = 3, + [36812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, - anon_sym_RPAREN, + ACTIONS(2357), 1, + sym_type, STATE(1586), 1, sym_comment, - [36585] = 3, - ACTIONS(3), 1, + [36822] = 3, + ACTIONS(2359), 1, anon_sym_POUND, - ACTIONS(2353), 1, - anon_sym_RPAREN, + ACTIONS(2361), 1, + aux_sym_comment_token1, STATE(1587), 1, sym_comment, - [36595] = 3, + [36832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2355), 1, - anon_sym_RPAREN, + ACTIONS(2363), 1, + anon_sym_LBRACE, STATE(1588), 1, sym_comment, - [36605] = 3, + [36842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, - sym__variable_name, + ACTIONS(2365), 1, + anon_sym_LBRACE, STATE(1589), 1, sym_comment, - [36615] = 3, + [36852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, - sym_type, + ACTIONS(2367), 1, + anon_sym_RPAREN, STATE(1590), 1, sym_comment, - [36625] = 3, + [36862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, - ts_builtin_sym_end, + ACTIONS(2369), 1, + sym__variable_name, STATE(1591), 1, sym_comment, - [36635] = 3, + [36872] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(965), 1, - anon_sym_EQ_GT, + ACTIONS(2371), 1, + sym_type, STATE(1592), 1, sym_comment, - [36645] = 3, + [36882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_EQ, + ACTIONS(2373), 1, + anon_sym_RPAREN, STATE(1593), 1, sym_comment, - [36655] = 3, + [36892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(2375), 1, anon_sym_RPAREN, STATE(1594), 1, sym_comment, - [36665] = 3, + [36902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2377), 1, anon_sym_RPAREN, STATE(1595), 1, sym_comment, - [36675] = 3, + [36912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_LBRACE, + ACTIONS(2379), 1, + anon_sym_EQ, STATE(1596), 1, sym_comment, - [36685] = 3, + [36922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2381), 1, anon_sym_RPAREN, STATE(1597), 1, sym_comment, - [36695] = 3, + [36932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(2383), 1, anon_sym_RPAREN, STATE(1598), 1, sym_comment, - [36705] = 3, + [36942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2385), 1, anon_sym_RPAREN, STATE(1599), 1, sym_comment, - [36715] = 3, + [36952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_RPAREN, + ACTIONS(2387), 1, + anon_sym_EQ_GT, STATE(1600), 1, sym_comment, - [36725] = 3, + [36962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_LPAREN, + ACTIONS(2389), 1, + anon_sym_RPAREN, STATE(1601), 1, sym_comment, - [36735] = 3, + [36972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, - anon_sym_RBRACE, + ACTIONS(2391), 1, + anon_sym_RPAREN, STATE(1602), 1, sym_comment, - [36745] = 3, + [36982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_RBRACE, + ACTIONS(2393), 1, + anon_sym_RPAREN, STATE(1603), 1, sym_comment, - [36755] = 3, + [36992] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym_selbrace, + ACTIONS(2395), 1, + sym_type, STATE(1604), 1, sym_comment, - [36765] = 3, + [37002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(2397), 1, sym_selbrace, STATE(1605), 1, sym_comment, - [36775] = 3, + [37012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2399), 1, anon_sym_RPAREN, STATE(1606), 1, sym_comment, - [36785] = 3, + [37022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, - sym__variable_name, + ACTIONS(2401), 1, + anon_sym_RPAREN, STATE(1607), 1, sym_comment, - [36795] = 3, + [37032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, - sym__variable_name, + ACTIONS(2403), 1, + anon_sym_RPAREN, STATE(1608), 1, sym_comment, - [36805] = 3, + [37042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2395), 1, - anon_sym_RPAREN, + ACTIONS(2405), 1, + sym__variable_name, STATE(1609), 1, sym_comment, - [36815] = 3, + [37052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2407), 1, anon_sym_RPAREN, STATE(1610), 1, sym_comment, - [36825] = 3, + [37062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2399), 1, - anon_sym_RPAREN, + ACTIONS(2409), 1, + anon_sym_RBRACE, STATE(1611), 1, sym_comment, - [36835] = 3, + [37072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, - sym_type, + ACTIONS(2411), 1, + anon_sym_LPAREN, STATE(1612), 1, sym_comment, - [36845] = 3, + [37082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_RBRACE, + ACTIONS(2413), 1, + anon_sym_RPAREN, STATE(1613), 1, sym_comment, - [36855] = 3, + [37092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2405), 1, - anon_sym_RBRACE, + ACTIONS(2415), 1, + anon_sym_COLON, STATE(1614), 1, sym_comment, - [36865] = 3, + [37102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_COLON, + ACTIONS(2417), 1, + anon_sym_RPAREN, STATE(1615), 1, sym_comment, - [36875] = 3, + [37112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, - anon_sym_RPAREN, + ACTIONS(2419), 1, + anon_sym_EQ, STATE(1616), 1, sym_comment, - [36885] = 3, + [37122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_RPAREN, + ACTIONS(2421), 1, + sym_type, STATE(1617), 1, sym_comment, - [36895] = 3, + [37132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, - anon_sym_RPAREN, + ACTIONS(2423), 1, + sym_selbrace, STATE(1618), 1, sym_comment, - [36905] = 3, + [37142] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, - sym__heredoc_start, + ACTIONS(2425), 1, + anon_sym_RPAREN, STATE(1619), 1, sym_comment, - [36915] = 3, + [37152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(2427), 1, anon_sym_RPAREN, STATE(1620), 1, sym_comment, - [36925] = 3, + [37162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_RPAREN, + ACTIONS(2429), 1, + anon_sym_LBRACE, STATE(1621), 1, sym_comment, - [36935] = 3, + [37172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, - sym_selbrace, + ACTIONS(2431), 1, + anon_sym_EQ, STATE(1622), 1, sym_comment, - [36945] = 3, + [37182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, - anon_sym_EQ_GT, + ACTIONS(2433), 1, + anon_sym_RPAREN, STATE(1623), 1, sym_comment, - [36955] = 3, + [37192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, + ACTIONS(2435), 1, anon_sym_RPAREN, STATE(1624), 1, sym_comment, - [36965] = 3, + [37202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, - sym__heredoc_start, + ACTIONS(2437), 1, + sym_type, STATE(1625), 1, sym_comment, - [36975] = 3, + [37212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, - anon_sym_RPAREN, + ACTIONS(2439), 1, + sym_type, STATE(1626), 1, sym_comment, - [36985] = 3, + [37222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, - anon_sym_LBRACE, + ACTIONS(2441), 1, + ts_builtin_sym_end, STATE(1627), 1, sym_comment, - [36995] = 3, + [37232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - anon_sym_EQ, + ACTIONS(2443), 1, + sym__heredoc_start, STATE(1628), 1, sym_comment, - [37005] = 3, + [37242] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, - sym__heredoc_start, + ACTIONS(2445), 1, + anon_sym_RPAREN, STATE(1629), 1, sym_comment, - [37015] = 3, + [37252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - sym_type, + ACTIONS(2447), 1, + anon_sym_RPAREN, STATE(1630), 1, sym_comment, - [37025] = 3, + [37262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, STATE(1631), 1, sym_comment, - [37035] = 3, + [37272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, - sym_selbrace, + ACTIONS(2451), 1, + anon_sym_RPAREN, STATE(1632), 1, sym_comment, - [37045] = 3, + [37282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2453), 1, sym__heredoc_start, STATE(1633), 1, sym_comment, - [37055] = 3, + [37292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, - sym__variable_name, + ACTIONS(2455), 1, + anon_sym_RPAREN, STATE(1634), 1, sym_comment, - [37065] = 3, + [37302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, - anon_sym_RBRACE, + ACTIONS(2457), 1, + anon_sym_RPAREN, STATE(1635), 1, sym_comment, - [37075] = 3, + [37312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(2459), 1, sym_selbrace, STATE(1636), 1, sym_comment, - [37085] = 3, + [37322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__heredoc_start, + ACTIONS(2461), 1, + anon_sym_COLON, STATE(1637), 1, sym_comment, - [37095] = 3, + [37332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(2463), 1, anon_sym_RPAREN, STATE(1638), 1, sym_comment, - [37105] = 3, + [37342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, - anon_sym_RPAREN, + ACTIONS(2465), 1, + sym__heredoc_start, STATE(1639), 1, sym_comment, - [37115] = 3, + [37352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, - sym_selbrace, + ACTIONS(2467), 1, + sym__variable_name, STATE(1640), 1, sym_comment, - [37125] = 3, + [37362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2459), 1, - sym__heredoc_start, + ACTIONS(2469), 1, + sym__variable_name, STATE(1641), 1, sym_comment, - [37135] = 3, + [37372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2461), 1, - sym_type, + ACTIONS(2471), 1, + anon_sym_EQ, STATE(1642), 1, sym_comment, - [37145] = 3, + [37382] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, - anon_sym_LPAREN, + ACTIONS(2473), 1, + sym__heredoc_start, STATE(1643), 1, sym_comment, - [37155] = 3, + [37392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(2475), 1, sym__variable_name, STATE(1644), 1, sym_comment, - [37165] = 3, + [37402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_LPAREN, + ACTIONS(2477), 1, + anon_sym_RBRACE, STATE(1645), 1, sym_comment, - [37175] = 3, + [37412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, - anon_sym_RBRACE, + ACTIONS(2479), 1, + sym_selbrace, STATE(1646), 1, sym_comment, - [37185] = 3, + [37422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_LPAREN, + ACTIONS(2481), 1, + sym__heredoc_start, STATE(1647), 1, sym_comment, - [37195] = 3, + [37432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - anon_sym_RPAREN, + ACTIONS(2483), 1, + sym__variable_name, STATE(1648), 1, sym_comment, - [37205] = 3, + [37442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, - anon_sym_LPAREN, + ACTIONS(2485), 1, + anon_sym_RPAREN, STATE(1649), 1, sym_comment, - [37215] = 3, + [37452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, - anon_sym_RPAREN, + ACTIONS(2487), 1, + sym_selbrace, STATE(1650), 1, sym_comment, - [37225] = 1, - ACTIONS(2477), 1, + [37462] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2489), 1, + sym__heredoc_start, + STATE(1651), 1, + sym_comment, + [37472] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1031), 1, + anon_sym_EQ_GT, + STATE(1652), 1, + sym_comment, + [37482] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2491), 1, + sym__variable_name, + STATE(1653), 1, + sym_comment, + [37492] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2493), 1, + sym_selbrace, + STATE(1654), 1, + sym_comment, + [37502] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2495), 1, + sym__heredoc_start, + STATE(1655), 1, + sym_comment, + [37512] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2497), 1, + anon_sym_RPAREN, + STATE(1656), 1, + sym_comment, + [37522] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2499), 1, + anon_sym_LPAREN, + STATE(1657), 1, + sym_comment, + [37532] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2501), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_comment, + [37542] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2059), 1, + anon_sym_LPAREN, + STATE(1659), 1, + sym_comment, + [37552] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2503), 1, + anon_sym_RBRACE, + STATE(1660), 1, + sym_comment, + [37562] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2505), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym_comment, + [37572] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2507), 1, + anon_sym_RBRACE, + STATE(1662), 1, + sym_comment, + [37582] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2509), 1, + anon_sym_LPAREN, + STATE(1663), 1, + sym_comment, + [37592] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2511), 1, + anon_sym_RBRACE, + STATE(1664), 1, + sym_comment, + [37602] = 1, + ACTIONS(2513), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(581)] = 0, - [SMALL_STATE(582)] = 69, - [SMALL_STATE(583)] = 136, - [SMALL_STATE(584)] = 205, - [SMALL_STATE(585)] = 274, - [SMALL_STATE(586)] = 341, - [SMALL_STATE(587)] = 410, - [SMALL_STATE(588)] = 479, - [SMALL_STATE(589)] = 548, - [SMALL_STATE(590)] = 615, - [SMALL_STATE(591)] = 682, - [SMALL_STATE(592)] = 749, - [SMALL_STATE(593)] = 816, - [SMALL_STATE(594)] = 883, - [SMALL_STATE(595)] = 950, - [SMALL_STATE(596)] = 1017, - [SMALL_STATE(597)] = 1092, - [SMALL_STATE(598)] = 1152, - [SMALL_STATE(599)] = 1212, - [SMALL_STATE(600)] = 1272, - [SMALL_STATE(601)] = 1330, - [SMALL_STATE(602)] = 1387, - [SMALL_STATE(603)] = 1446, - [SMALL_STATE(604)] = 1503, - [SMALL_STATE(605)] = 1560, - [SMALL_STATE(606)] = 1619, - [SMALL_STATE(607)] = 1676, - [SMALL_STATE(608)] = 1733, - [SMALL_STATE(609)] = 1790, - [SMALL_STATE(610)] = 1849, - [SMALL_STATE(611)] = 1912, - [SMALL_STATE(612)] = 1975, - [SMALL_STATE(613)] = 2031, - [SMALL_STATE(614)] = 2088, - [SMALL_STATE(615)] = 2145, - [SMALL_STATE(616)] = 2202, - [SMALL_STATE(617)] = 2259, - [SMALL_STATE(618)] = 2316, - [SMALL_STATE(619)] = 2396, - [SMALL_STATE(620)] = 2458, - [SMALL_STATE(621)] = 2560, - [SMALL_STATE(622)] = 2636, - [SMALL_STATE(623)] = 2698, - [SMALL_STATE(624)] = 2754, - [SMALL_STATE(625)] = 2810, - [SMALL_STATE(626)] = 2866, - [SMALL_STATE(627)] = 2920, - [SMALL_STATE(628)] = 2970, - [SMALL_STATE(629)] = 3020, - [SMALL_STATE(630)] = 3088, - [SMALL_STATE(631)] = 3150, - [SMALL_STATE(632)] = 3206, - [SMALL_STATE(633)] = 3264, - [SMALL_STATE(634)] = 3322, - [SMALL_STATE(635)] = 3390, - [SMALL_STATE(636)] = 3462, - [SMALL_STATE(637)] = 3512, - [SMALL_STATE(638)] = 3604, - [SMALL_STATE(639)] = 3694, - [SMALL_STATE(640)] = 3744, - [SMALL_STATE(641)] = 3824, - [SMALL_STATE(642)] = 3904, - [SMALL_STATE(643)] = 3984, - [SMALL_STATE(644)] = 4056, - [SMALL_STATE(645)] = 4132, - [SMALL_STATE(646)] = 4181, - [SMALL_STATE(647)] = 4236, - [SMALL_STATE(648)] = 4285, - [SMALL_STATE(649)] = 4334, - [SMALL_STATE(650)] = 4385, - [SMALL_STATE(651)] = 4434, - [SMALL_STATE(652)] = 4482, - [SMALL_STATE(653)] = 4530, - [SMALL_STATE(654)] = 4578, - [SMALL_STATE(655)] = 4626, - [SMALL_STATE(656)] = 4674, - [SMALL_STATE(657)] = 4722, - [SMALL_STATE(658)] = 4780, - [SMALL_STATE(659)] = 4828, - [SMALL_STATE(660)] = 4876, - [SMALL_STATE(661)] = 4924, - [SMALL_STATE(662)] = 4972, - [SMALL_STATE(663)] = 5020, - [SMALL_STATE(664)] = 5122, - [SMALL_STATE(665)] = 5170, - [SMALL_STATE(666)] = 5218, - [SMALL_STATE(667)] = 5268, - [SMALL_STATE(668)] = 5316, - [SMALL_STATE(669)] = 5364, - [SMALL_STATE(670)] = 5412, - [SMALL_STATE(671)] = 5460, - [SMALL_STATE(672)] = 5508, - [SMALL_STATE(673)] = 5556, - [SMALL_STATE(674)] = 5604, - [SMALL_STATE(675)] = 5652, - [SMALL_STATE(676)] = 5700, - [SMALL_STATE(677)] = 5748, - [SMALL_STATE(678)] = 5796, - [SMALL_STATE(679)] = 5844, - [SMALL_STATE(680)] = 5892, - [SMALL_STATE(681)] = 5940, - [SMALL_STATE(682)] = 5988, - [SMALL_STATE(683)] = 6036, - [SMALL_STATE(684)] = 6084, - [SMALL_STATE(685)] = 6132, - [SMALL_STATE(686)] = 6180, - [SMALL_STATE(687)] = 6238, - [SMALL_STATE(688)] = 6286, - [SMALL_STATE(689)] = 6334, - [SMALL_STATE(690)] = 6382, - [SMALL_STATE(691)] = 6430, - [SMALL_STATE(692)] = 6478, - [SMALL_STATE(693)] = 6526, - [SMALL_STATE(694)] = 6574, - [SMALL_STATE(695)] = 6622, - [SMALL_STATE(696)] = 6670, - [SMALL_STATE(697)] = 6718, - [SMALL_STATE(698)] = 6766, - [SMALL_STATE(699)] = 6814, - [SMALL_STATE(700)] = 6862, - [SMALL_STATE(701)] = 6910, - [SMALL_STATE(702)] = 6958, - [SMALL_STATE(703)] = 7006, - [SMALL_STATE(704)] = 7054, - [SMALL_STATE(705)] = 7102, - [SMALL_STATE(706)] = 7150, - [SMALL_STATE(707)] = 7198, - [SMALL_STATE(708)] = 7246, - [SMALL_STATE(709)] = 7294, - [SMALL_STATE(710)] = 7342, - [SMALL_STATE(711)] = 7392, - [SMALL_STATE(712)] = 7440, - [SMALL_STATE(713)] = 7488, - [SMALL_STATE(714)] = 7536, - [SMALL_STATE(715)] = 7584, - [SMALL_STATE(716)] = 7632, - [SMALL_STATE(717)] = 7680, - [SMALL_STATE(718)] = 7728, - [SMALL_STATE(719)] = 7776, - [SMALL_STATE(720)] = 7824, - [SMALL_STATE(721)] = 7872, - [SMALL_STATE(722)] = 7920, - [SMALL_STATE(723)] = 7968, - [SMALL_STATE(724)] = 8016, - [SMALL_STATE(725)] = 8067, - [SMALL_STATE(726)] = 8168, - [SMALL_STATE(727)] = 8217, - [SMALL_STATE(728)] = 8262, - [SMALL_STATE(729)] = 8307, - [SMALL_STATE(730)] = 8358, - [SMALL_STATE(731)] = 8409, - [SMALL_STATE(732)] = 8454, - [SMALL_STATE(733)] = 8505, - [SMALL_STATE(734)] = 8556, - [SMALL_STATE(735)] = 8607, - [SMALL_STATE(736)] = 8652, - [SMALL_STATE(737)] = 8736, - [SMALL_STATE(738)] = 8788, - [SMALL_STATE(739)] = 8844, - [SMALL_STATE(740)] = 8894, - [SMALL_STATE(741)] = 8944, - [SMALL_STATE(742)] = 9006, - [SMALL_STATE(743)] = 9058, - [SMALL_STATE(744)] = 9108, - [SMALL_STATE(745)] = 9158, - [SMALL_STATE(746)] = 9220, - [SMALL_STATE(747)] = 9276, - [SMALL_STATE(748)] = 9332, - [SMALL_STATE(749)] = 9398, - [SMALL_STATE(750)] = 9464, - [SMALL_STATE(751)] = 9534, - [SMALL_STATE(752)] = 9604, - [SMALL_STATE(753)] = 9678, - [SMALL_STATE(754)] = 9752, - [SMALL_STATE(755)] = 9826, - [SMALL_STATE(756)] = 9900, - [SMALL_STATE(757)] = 9982, - [SMALL_STATE(758)] = 10032, - [SMALL_STATE(759)] = 10075, - [SMALL_STATE(760)] = 10118, - [SMALL_STATE(761)] = 10161, - [SMALL_STATE(762)] = 10204, - [SMALL_STATE(763)] = 10247, - [SMALL_STATE(764)] = 10290, - [SMALL_STATE(765)] = 10333, - [SMALL_STATE(766)] = 10376, - [SMALL_STATE(767)] = 10421, - [SMALL_STATE(768)] = 10464, - [SMALL_STATE(769)] = 10507, - [SMALL_STATE(770)] = 10550, - [SMALL_STATE(771)] = 10593, - [SMALL_STATE(772)] = 10636, - [SMALL_STATE(773)] = 10679, - [SMALL_STATE(774)] = 10722, - [SMALL_STATE(775)] = 10765, - [SMALL_STATE(776)] = 10808, - [SMALL_STATE(777)] = 10851, - [SMALL_STATE(778)] = 10894, - [SMALL_STATE(779)] = 10937, - [SMALL_STATE(780)] = 10980, - [SMALL_STATE(781)] = 11023, - [SMALL_STATE(782)] = 11066, - [SMALL_STATE(783)] = 11109, - [SMALL_STATE(784)] = 11152, - [SMALL_STATE(785)] = 11195, - [SMALL_STATE(786)] = 11238, - [SMALL_STATE(787)] = 11281, - [SMALL_STATE(788)] = 11324, - [SMALL_STATE(789)] = 11367, - [SMALL_STATE(790)] = 11410, - [SMALL_STATE(791)] = 11453, - [SMALL_STATE(792)] = 11496, - [SMALL_STATE(793)] = 11539, - [SMALL_STATE(794)] = 11582, - [SMALL_STATE(795)] = 11625, - [SMALL_STATE(796)] = 11668, - [SMALL_STATE(797)] = 11711, - [SMALL_STATE(798)] = 11754, - [SMALL_STATE(799)] = 11797, - [SMALL_STATE(800)] = 11840, - [SMALL_STATE(801)] = 11883, - [SMALL_STATE(802)] = 11926, - [SMALL_STATE(803)] = 11969, - [SMALL_STATE(804)] = 12014, - [SMALL_STATE(805)] = 12057, - [SMALL_STATE(806)] = 12100, - [SMALL_STATE(807)] = 12143, - [SMALL_STATE(808)] = 12186, - [SMALL_STATE(809)] = 12229, - [SMALL_STATE(810)] = 12272, - [SMALL_STATE(811)] = 12315, - [SMALL_STATE(812)] = 12358, - [SMALL_STATE(813)] = 12401, - [SMALL_STATE(814)] = 12444, - [SMALL_STATE(815)] = 12487, - [SMALL_STATE(816)] = 12530, - [SMALL_STATE(817)] = 12573, - [SMALL_STATE(818)] = 12616, - [SMALL_STATE(819)] = 12659, - [SMALL_STATE(820)] = 12702, - [SMALL_STATE(821)] = 12745, - [SMALL_STATE(822)] = 12788, - [SMALL_STATE(823)] = 12831, - [SMALL_STATE(824)] = 12874, - [SMALL_STATE(825)] = 12917, - [SMALL_STATE(826)] = 12960, - [SMALL_STATE(827)] = 13003, - [SMALL_STATE(828)] = 13046, - [SMALL_STATE(829)] = 13089, - [SMALL_STATE(830)] = 13132, - [SMALL_STATE(831)] = 13175, - [SMALL_STATE(832)] = 13218, - [SMALL_STATE(833)] = 13261, - [SMALL_STATE(834)] = 13305, - [SMALL_STATE(835)] = 13357, - [SMALL_STATE(836)] = 13399, - [SMALL_STATE(837)] = 13441, - [SMALL_STATE(838)] = 13483, - [SMALL_STATE(839)] = 13525, - [SMALL_STATE(840)] = 13577, - [SMALL_STATE(841)] = 13619, - [SMALL_STATE(842)] = 13670, - [SMALL_STATE(843)] = 13711, - [SMALL_STATE(844)] = 13762, - [SMALL_STATE(845)] = 13807, - [SMALL_STATE(846)] = 13901, - [SMALL_STATE(847)] = 13945, - [SMALL_STATE(848)] = 14035, - [SMALL_STATE(849)] = 14089, - [SMALL_STATE(850)] = 14142, - [SMALL_STATE(851)] = 14233, - [SMALL_STATE(852)] = 14324, - [SMALL_STATE(853)] = 14377, - [SMALL_STATE(854)] = 14430, - [SMALL_STATE(855)] = 14521, - [SMALL_STATE(856)] = 14612, - [SMALL_STATE(857)] = 14703, - [SMALL_STATE(858)] = 14742, - [SMALL_STATE(859)] = 14833, - [SMALL_STATE(860)] = 14872, - [SMALL_STATE(861)] = 14917, - [SMALL_STATE(862)] = 14956, - [SMALL_STATE(863)] = 15001, - [SMALL_STATE(864)] = 15046, - [SMALL_STATE(865)] = 15091, - [SMALL_STATE(866)] = 15136, - [SMALL_STATE(867)] = 15175, - [SMALL_STATE(868)] = 15266, - [SMALL_STATE(869)] = 15311, - [SMALL_STATE(870)] = 15390, - [SMALL_STATE(871)] = 15467, - [SMALL_STATE(872)] = 15536, - [SMALL_STATE(873)] = 15605, - [SMALL_STATE(874)] = 15674, - [SMALL_STATE(875)] = 15743, - [SMALL_STATE(876)] = 15808, - [SMALL_STATE(877)] = 15873, - [SMALL_STATE(878)] = 15934, - [SMALL_STATE(879)] = 15995, - [SMALL_STATE(880)] = 16046, - [SMALL_STATE(881)] = 16097, - [SMALL_STATE(882)] = 16154, - [SMALL_STATE(883)] = 16201, - [SMALL_STATE(884)] = 16248, - [SMALL_STATE(885)] = 16293, - [SMALL_STATE(886)] = 16344, - [SMALL_STATE(887)] = 16389, - [SMALL_STATE(888)] = 16480, - [SMALL_STATE(889)] = 16525, - [SMALL_STATE(890)] = 16578, - [SMALL_STATE(891)] = 16623, - [SMALL_STATE(892)] = 16714, - [SMALL_STATE(893)] = 16805, - [SMALL_STATE(894)] = 16848, - [SMALL_STATE(895)] = 16939, - [SMALL_STATE(896)] = 16984, - [SMALL_STATE(897)] = 17041, - [SMALL_STATE(898)] = 17132, - [SMALL_STATE(899)] = 17223, - [SMALL_STATE(900)] = 17268, - [SMALL_STATE(901)] = 17359, - [SMALL_STATE(902)] = 17412, - [SMALL_STATE(903)] = 17503, - [SMALL_STATE(904)] = 17592, - [SMALL_STATE(905)] = 17637, - [SMALL_STATE(906)] = 17682, - [SMALL_STATE(907)] = 17727, - [SMALL_STATE(908)] = 17816, - [SMALL_STATE(909)] = 17905, - [SMALL_STATE(910)] = 17994, - [SMALL_STATE(911)] = 18039, - [SMALL_STATE(912)] = 18084, - [SMALL_STATE(913)] = 18129, - [SMALL_STATE(914)] = 18174, - [SMALL_STATE(915)] = 18265, - [SMALL_STATE(916)] = 18356, - [SMALL_STATE(917)] = 18409, - [SMALL_STATE(918)] = 18500, - [SMALL_STATE(919)] = 18545, - [SMALL_STATE(920)] = 18636, - [SMALL_STATE(921)] = 18704, - [SMALL_STATE(922)] = 18782, - [SMALL_STATE(923)] = 18850, - [SMALL_STATE(924)] = 18894, - [SMALL_STATE(925)] = 18962, - [SMALL_STATE(926)] = 19026, - [SMALL_STATE(927)] = 19064, - [SMALL_STATE(928)] = 19128, - [SMALL_STATE(929)] = 19188, - [SMALL_STATE(930)] = 19248, - [SMALL_STATE(931)] = 19298, - [SMALL_STATE(932)] = 19348, - [SMALL_STATE(933)] = 19404, - [SMALL_STATE(934)] = 19450, - [SMALL_STATE(935)] = 19496, - [SMALL_STATE(936)] = 19546, - [SMALL_STATE(937)] = 19602, - [SMALL_STATE(938)] = 19680, - [SMALL_STATE(939)] = 19756, - [SMALL_STATE(940)] = 19844, - [SMALL_STATE(941)] = 19932, - [SMALL_STATE(942)] = 19972, - [SMALL_STATE(943)] = 20060, - [SMALL_STATE(944)] = 20100, - [SMALL_STATE(945)] = 20140, - [SMALL_STATE(946)] = 20188, - [SMALL_STATE(947)] = 20228, - [SMALL_STATE(948)] = 20316, - [SMALL_STATE(949)] = 20404, - [SMALL_STATE(950)] = 20492, - [SMALL_STATE(951)] = 20580, - [SMALL_STATE(952)] = 20668, - [SMALL_STATE(953)] = 20756, - [SMALL_STATE(954)] = 20844, - [SMALL_STATE(955)] = 20932, - [SMALL_STATE(956)] = 21020, - [SMALL_STATE(957)] = 21108, - [SMALL_STATE(958)] = 21196, - [SMALL_STATE(959)] = 21234, - [SMALL_STATE(960)] = 21278, - [SMALL_STATE(961)] = 21322, - [SMALL_STATE(962)] = 21366, - [SMALL_STATE(963)] = 21410, - [SMALL_STATE(964)] = 21498, - [SMALL_STATE(965)] = 21542, - [SMALL_STATE(966)] = 21586, - [SMALL_STATE(967)] = 21674, - [SMALL_STATE(968)] = 21718, - [SMALL_STATE(969)] = 21806, - [SMALL_STATE(970)] = 21894, - [SMALL_STATE(971)] = 21982, - [SMALL_STATE(972)] = 22070, - [SMALL_STATE(973)] = 22158, - [SMALL_STATE(974)] = 22196, - [SMALL_STATE(975)] = 22234, - [SMALL_STATE(976)] = 22276, - [SMALL_STATE(977)] = 22344, - [SMALL_STATE(978)] = 22420, - [SMALL_STATE(979)] = 22488, - [SMALL_STATE(980)] = 22556, - [SMALL_STATE(981)] = 22624, - [SMALL_STATE(982)] = 22664, - [SMALL_STATE(983)] = 22732, - [SMALL_STATE(984)] = 22796, - [SMALL_STATE(985)] = 22860, - [SMALL_STATE(986)] = 22920, - [SMALL_STATE(987)] = 22980, - [SMALL_STATE(988)] = 23030, - [SMALL_STATE(989)] = 23080, - [SMALL_STATE(990)] = 23136, - [SMALL_STATE(991)] = 23192, - [SMALL_STATE(992)] = 23238, - [SMALL_STATE(993)] = 23276, - [SMALL_STATE(994)] = 23320, - [SMALL_STATE(995)] = 23366, - [SMALL_STATE(996)] = 23404, - [SMALL_STATE(997)] = 23454, - [SMALL_STATE(998)] = 23492, - [SMALL_STATE(999)] = 23529, - [SMALL_STATE(1000)] = 23568, - [SMALL_STATE(1001)] = 23605, - [SMALL_STATE(1002)] = 23642, - [SMALL_STATE(1003)] = 23679, - [SMALL_STATE(1004)] = 23716, - [SMALL_STATE(1005)] = 23753, - [SMALL_STATE(1006)] = 23790, - [SMALL_STATE(1007)] = 23827, - [SMALL_STATE(1008)] = 23864, - [SMALL_STATE(1009)] = 23901, - [SMALL_STATE(1010)] = 23938, - [SMALL_STATE(1011)] = 23975, - [SMALL_STATE(1012)] = 24012, - [SMALL_STATE(1013)] = 24049, - [SMALL_STATE(1014)] = 24096, - [SMALL_STATE(1015)] = 24133, - [SMALL_STATE(1016)] = 24170, - [SMALL_STATE(1017)] = 24207, - [SMALL_STATE(1018)] = 24244, - [SMALL_STATE(1019)] = 24281, - [SMALL_STATE(1020)] = 24318, - [SMALL_STATE(1021)] = 24355, - [SMALL_STATE(1022)] = 24392, - [SMALL_STATE(1023)] = 24429, - [SMALL_STATE(1024)] = 24466, - [SMALL_STATE(1025)] = 24503, - [SMALL_STATE(1026)] = 24540, - [SMALL_STATE(1027)] = 24577, - [SMALL_STATE(1028)] = 24614, - [SMALL_STATE(1029)] = 24651, - [SMALL_STATE(1030)] = 24688, - [SMALL_STATE(1031)] = 24725, - [SMALL_STATE(1032)] = 24762, - [SMALL_STATE(1033)] = 24809, - [SMALL_STATE(1034)] = 24846, - [SMALL_STATE(1035)] = 24883, - [SMALL_STATE(1036)] = 24920, - [SMALL_STATE(1037)] = 24967, - [SMALL_STATE(1038)] = 25004, - [SMALL_STATE(1039)] = 25041, - [SMALL_STATE(1040)] = 25078, - [SMALL_STATE(1041)] = 25115, - [SMALL_STATE(1042)] = 25152, - [SMALL_STATE(1043)] = 25199, - [SMALL_STATE(1044)] = 25236, - [SMALL_STATE(1045)] = 25273, - [SMALL_STATE(1046)] = 25320, - [SMALL_STATE(1047)] = 25357, - [SMALL_STATE(1048)] = 25394, - [SMALL_STATE(1049)] = 25431, - [SMALL_STATE(1050)] = 25468, - [SMALL_STATE(1051)] = 25505, - [SMALL_STATE(1052)] = 25542, - [SMALL_STATE(1053)] = 25589, - [SMALL_STATE(1054)] = 25626, - [SMALL_STATE(1055)] = 25663, - [SMALL_STATE(1056)] = 25710, - [SMALL_STATE(1057)] = 25747, - [SMALL_STATE(1058)] = 25784, - [SMALL_STATE(1059)] = 25821, - [SMALL_STATE(1060)] = 25860, - [SMALL_STATE(1061)] = 25897, - [SMALL_STATE(1062)] = 25934, - [SMALL_STATE(1063)] = 25971, - [SMALL_STATE(1064)] = 26008, - [SMALL_STATE(1065)] = 26045, - [SMALL_STATE(1066)] = 26082, - [SMALL_STATE(1067)] = 26119, - [SMALL_STATE(1068)] = 26156, - [SMALL_STATE(1069)] = 26193, - [SMALL_STATE(1070)] = 26230, - [SMALL_STATE(1071)] = 26267, - [SMALL_STATE(1072)] = 26304, - [SMALL_STATE(1073)] = 26341, - [SMALL_STATE(1074)] = 26378, - [SMALL_STATE(1075)] = 26415, - [SMALL_STATE(1076)] = 26452, - [SMALL_STATE(1077)] = 26489, - [SMALL_STATE(1078)] = 26528, - [SMALL_STATE(1079)] = 26565, - [SMALL_STATE(1080)] = 26602, - [SMALL_STATE(1081)] = 26639, - [SMALL_STATE(1082)] = 26676, - [SMALL_STATE(1083)] = 26713, - [SMALL_STATE(1084)] = 26750, - [SMALL_STATE(1085)] = 26789, - [SMALL_STATE(1086)] = 26825, - [SMALL_STATE(1087)] = 26861, - [SMALL_STATE(1088)] = 26897, - [SMALL_STATE(1089)] = 26933, - [SMALL_STATE(1090)] = 26969, - [SMALL_STATE(1091)] = 27005, - [SMALL_STATE(1092)] = 27041, - [SMALL_STATE(1093)] = 27077, - [SMALL_STATE(1094)] = 27113, - [SMALL_STATE(1095)] = 27149, - [SMALL_STATE(1096)] = 27185, - [SMALL_STATE(1097)] = 27221, - [SMALL_STATE(1098)] = 27257, - [SMALL_STATE(1099)] = 27293, - [SMALL_STATE(1100)] = 27329, - [SMALL_STATE(1101)] = 27365, - [SMALL_STATE(1102)] = 27401, - [SMALL_STATE(1103)] = 27437, - [SMALL_STATE(1104)] = 27473, - [SMALL_STATE(1105)] = 27509, - [SMALL_STATE(1106)] = 27545, - [SMALL_STATE(1107)] = 27581, - [SMALL_STATE(1108)] = 27617, - [SMALL_STATE(1109)] = 27653, - [SMALL_STATE(1110)] = 27689, - [SMALL_STATE(1111)] = 27725, - [SMALL_STATE(1112)] = 27761, - [SMALL_STATE(1113)] = 27797, - [SMALL_STATE(1114)] = 27833, - [SMALL_STATE(1115)] = 27869, - [SMALL_STATE(1116)] = 27905, - [SMALL_STATE(1117)] = 27941, - [SMALL_STATE(1118)] = 27977, - [SMALL_STATE(1119)] = 28013, - [SMALL_STATE(1120)] = 28049, - [SMALL_STATE(1121)] = 28085, - [SMALL_STATE(1122)] = 28121, - [SMALL_STATE(1123)] = 28157, - [SMALL_STATE(1124)] = 28195, - [SMALL_STATE(1125)] = 28231, - [SMALL_STATE(1126)] = 28267, - [SMALL_STATE(1127)] = 28303, - [SMALL_STATE(1128)] = 28339, - [SMALL_STATE(1129)] = 28375, - [SMALL_STATE(1130)] = 28411, - [SMALL_STATE(1131)] = 28447, - [SMALL_STATE(1132)] = 28483, - [SMALL_STATE(1133)] = 28519, - [SMALL_STATE(1134)] = 28555, - [SMALL_STATE(1135)] = 28591, - [SMALL_STATE(1136)] = 28627, - [SMALL_STATE(1137)] = 28663, - [SMALL_STATE(1138)] = 28699, - [SMALL_STATE(1139)] = 28735, - [SMALL_STATE(1140)] = 28771, - [SMALL_STATE(1141)] = 28807, - [SMALL_STATE(1142)] = 28845, - [SMALL_STATE(1143)] = 28881, - [SMALL_STATE(1144)] = 28917, - [SMALL_STATE(1145)] = 28953, - [SMALL_STATE(1146)] = 28989, - [SMALL_STATE(1147)] = 29025, - [SMALL_STATE(1148)] = 29061, - [SMALL_STATE(1149)] = 29097, - [SMALL_STATE(1150)] = 29133, - [SMALL_STATE(1151)] = 29169, - [SMALL_STATE(1152)] = 29205, - [SMALL_STATE(1153)] = 29260, - [SMALL_STATE(1154)] = 29315, - [SMALL_STATE(1155)] = 29370, - [SMALL_STATE(1156)] = 29423, - [SMALL_STATE(1157)] = 29478, - [SMALL_STATE(1158)] = 29533, - [SMALL_STATE(1159)] = 29588, - [SMALL_STATE(1160)] = 29637, - [SMALL_STATE(1161)] = 29686, - [SMALL_STATE(1162)] = 29735, - [SMALL_STATE(1163)] = 29784, - [SMALL_STATE(1164)] = 29833, - [SMALL_STATE(1165)] = 29882, - [SMALL_STATE(1166)] = 29928, - [SMALL_STATE(1167)] = 29974, - [SMALL_STATE(1168)] = 30020, - [SMALL_STATE(1169)] = 30066, - [SMALL_STATE(1170)] = 30112, - [SMALL_STATE(1171)] = 30158, - [SMALL_STATE(1172)] = 30204, - [SMALL_STATE(1173)] = 30250, - [SMALL_STATE(1174)] = 30296, - [SMALL_STATE(1175)] = 30342, - [SMALL_STATE(1176)] = 30388, - [SMALL_STATE(1177)] = 30434, - [SMALL_STATE(1178)] = 30466, - [SMALL_STATE(1179)] = 30505, - [SMALL_STATE(1180)] = 30544, - [SMALL_STATE(1181)] = 30580, - [SMALL_STATE(1182)] = 30616, - [SMALL_STATE(1183)] = 30637, - [SMALL_STATE(1184)] = 30657, - [SMALL_STATE(1185)] = 30682, - [SMALL_STATE(1186)] = 30707, - [SMALL_STATE(1187)] = 30732, - [SMALL_STATE(1188)] = 30757, - [SMALL_STATE(1189)] = 30782, - [SMALL_STATE(1190)] = 30807, - [SMALL_STATE(1191)] = 30830, - [SMALL_STATE(1192)] = 30853, - [SMALL_STATE(1193)] = 30875, - [SMALL_STATE(1194)] = 30889, - [SMALL_STATE(1195)] = 30909, - [SMALL_STATE(1196)] = 30929, - [SMALL_STATE(1197)] = 30947, - [SMALL_STATE(1198)] = 30965, - [SMALL_STATE(1199)] = 30985, - [SMALL_STATE(1200)] = 31005, - [SMALL_STATE(1201)] = 31027, - [SMALL_STATE(1202)] = 31047, - [SMALL_STATE(1203)] = 31069, - [SMALL_STATE(1204)] = 31089, - [SMALL_STATE(1205)] = 31107, - [SMALL_STATE(1206)] = 31125, - [SMALL_STATE(1207)] = 31143, - [SMALL_STATE(1208)] = 31163, - [SMALL_STATE(1209)] = 31183, - [SMALL_STATE(1210)] = 31199, - [SMALL_STATE(1211)] = 31219, - [SMALL_STATE(1212)] = 31233, - [SMALL_STATE(1213)] = 31253, - [SMALL_STATE(1214)] = 31273, - [SMALL_STATE(1215)] = 31295, - [SMALL_STATE(1216)] = 31313, - [SMALL_STATE(1217)] = 31331, - [SMALL_STATE(1218)] = 31353, - [SMALL_STATE(1219)] = 31371, - [SMALL_STATE(1220)] = 31389, - [SMALL_STATE(1221)] = 31409, - [SMALL_STATE(1222)] = 31427, - [SMALL_STATE(1223)] = 31447, - [SMALL_STATE(1224)] = 31465, - [SMALL_STATE(1225)] = 31483, - [SMALL_STATE(1226)] = 31501, - [SMALL_STATE(1227)] = 31519, - [SMALL_STATE(1228)] = 31533, - [SMALL_STATE(1229)] = 31553, - [SMALL_STATE(1230)] = 31571, - [SMALL_STATE(1231)] = 31589, - [SMALL_STATE(1232)] = 31607, - [SMALL_STATE(1233)] = 31621, - [SMALL_STATE(1234)] = 31641, - [SMALL_STATE(1235)] = 31659, - [SMALL_STATE(1236)] = 31681, - [SMALL_STATE(1237)] = 31703, - [SMALL_STATE(1238)] = 31721, - [SMALL_STATE(1239)] = 31739, - [SMALL_STATE(1240)] = 31759, - [SMALL_STATE(1241)] = 31777, - [SMALL_STATE(1242)] = 31795, - [SMALL_STATE(1243)] = 31813, - [SMALL_STATE(1244)] = 31835, - [SMALL_STATE(1245)] = 31855, - [SMALL_STATE(1246)] = 31873, - [SMALL_STATE(1247)] = 31895, - [SMALL_STATE(1248)] = 31917, - [SMALL_STATE(1249)] = 31935, - [SMALL_STATE(1250)] = 31953, - [SMALL_STATE(1251)] = 31971, - [SMALL_STATE(1252)] = 31989, - [SMALL_STATE(1253)] = 32011, - [SMALL_STATE(1254)] = 32027, - [SMALL_STATE(1255)] = 32049, - [SMALL_STATE(1256)] = 32067, - [SMALL_STATE(1257)] = 32087, - [SMALL_STATE(1258)] = 32105, - [SMALL_STATE(1259)] = 32123, - [SMALL_STATE(1260)] = 32141, - [SMALL_STATE(1261)] = 32158, - [SMALL_STATE(1262)] = 32177, - [SMALL_STATE(1263)] = 32194, - [SMALL_STATE(1264)] = 32211, - [SMALL_STATE(1265)] = 32228, - [SMALL_STATE(1266)] = 32247, - [SMALL_STATE(1267)] = 32260, - [SMALL_STATE(1268)] = 32279, - [SMALL_STATE(1269)] = 32298, - [SMALL_STATE(1270)] = 32315, - [SMALL_STATE(1271)] = 32334, - [SMALL_STATE(1272)] = 32353, - [SMALL_STATE(1273)] = 32370, - [SMALL_STATE(1274)] = 32389, - [SMALL_STATE(1275)] = 32408, - [SMALL_STATE(1276)] = 32427, - [SMALL_STATE(1277)] = 32440, - [SMALL_STATE(1278)] = 32457, - [SMALL_STATE(1279)] = 32474, - [SMALL_STATE(1280)] = 32493, - [SMALL_STATE(1281)] = 32512, - [SMALL_STATE(1282)] = 32527, - [SMALL_STATE(1283)] = 32546, - [SMALL_STATE(1284)] = 32563, - [SMALL_STATE(1285)] = 32580, - [SMALL_STATE(1286)] = 32597, - [SMALL_STATE(1287)] = 32616, - [SMALL_STATE(1288)] = 32635, - [SMALL_STATE(1289)] = 32654, - [SMALL_STATE(1290)] = 32673, - [SMALL_STATE(1291)] = 32686, - [SMALL_STATE(1292)] = 32705, - [SMALL_STATE(1293)] = 32724, - [SMALL_STATE(1294)] = 32737, - [SMALL_STATE(1295)] = 32756, - [SMALL_STATE(1296)] = 32775, - [SMALL_STATE(1297)] = 32794, - [SMALL_STATE(1298)] = 32811, - [SMALL_STATE(1299)] = 32830, - [SMALL_STATE(1300)] = 32843, - [SMALL_STATE(1301)] = 32862, - [SMALL_STATE(1302)] = 32881, - [SMALL_STATE(1303)] = 32894, - [SMALL_STATE(1304)] = 32911, - [SMALL_STATE(1305)] = 32928, - [SMALL_STATE(1306)] = 32943, - [SMALL_STATE(1307)] = 32960, - [SMALL_STATE(1308)] = 32979, - [SMALL_STATE(1309)] = 32998, - [SMALL_STATE(1310)] = 33011, - [SMALL_STATE(1311)] = 33028, - [SMALL_STATE(1312)] = 33041, - [SMALL_STATE(1313)] = 33058, - [SMALL_STATE(1314)] = 33077, - [SMALL_STATE(1315)] = 33096, - [SMALL_STATE(1316)] = 33115, - [SMALL_STATE(1317)] = 33132, - [SMALL_STATE(1318)] = 33147, - [SMALL_STATE(1319)] = 33166, - [SMALL_STATE(1320)] = 33180, - [SMALL_STATE(1321)] = 33194, - [SMALL_STATE(1322)] = 33208, - [SMALL_STATE(1323)] = 33222, - [SMALL_STATE(1324)] = 33236, - [SMALL_STATE(1325)] = 33252, - [SMALL_STATE(1326)] = 33266, - [SMALL_STATE(1327)] = 33278, - [SMALL_STATE(1328)] = 33292, - [SMALL_STATE(1329)] = 33304, - [SMALL_STATE(1330)] = 33318, - [SMALL_STATE(1331)] = 33334, - [SMALL_STATE(1332)] = 33350, - [SMALL_STATE(1333)] = 33364, - [SMALL_STATE(1334)] = 33376, - [SMALL_STATE(1335)] = 33390, - [SMALL_STATE(1336)] = 33402, - [SMALL_STATE(1337)] = 33416, - [SMALL_STATE(1338)] = 33430, - [SMALL_STATE(1339)] = 33444, - [SMALL_STATE(1340)] = 33458, - [SMALL_STATE(1341)] = 33472, - [SMALL_STATE(1342)] = 33486, - [SMALL_STATE(1343)] = 33502, - [SMALL_STATE(1344)] = 33514, - [SMALL_STATE(1345)] = 33530, - [SMALL_STATE(1346)] = 33544, - [SMALL_STATE(1347)] = 33558, - [SMALL_STATE(1348)] = 33574, - [SMALL_STATE(1349)] = 33588, - [SMALL_STATE(1350)] = 33600, - [SMALL_STATE(1351)] = 33614, - [SMALL_STATE(1352)] = 33630, - [SMALL_STATE(1353)] = 33642, - [SMALL_STATE(1354)] = 33658, - [SMALL_STATE(1355)] = 33670, - [SMALL_STATE(1356)] = 33682, - [SMALL_STATE(1357)] = 33698, - [SMALL_STATE(1358)] = 33712, - [SMALL_STATE(1359)] = 33726, - [SMALL_STATE(1360)] = 33738, - [SMALL_STATE(1361)] = 33752, - [SMALL_STATE(1362)] = 33766, - [SMALL_STATE(1363)] = 33778, - [SMALL_STATE(1364)] = 33790, - [SMALL_STATE(1365)] = 33806, - [SMALL_STATE(1366)] = 33818, - [SMALL_STATE(1367)] = 33834, - [SMALL_STATE(1368)] = 33846, - [SMALL_STATE(1369)] = 33860, - [SMALL_STATE(1370)] = 33872, - [SMALL_STATE(1371)] = 33888, - [SMALL_STATE(1372)] = 33904, - [SMALL_STATE(1373)] = 33918, - [SMALL_STATE(1374)] = 33930, - [SMALL_STATE(1375)] = 33944, - [SMALL_STATE(1376)] = 33956, - [SMALL_STATE(1377)] = 33970, - [SMALL_STATE(1378)] = 33982, - [SMALL_STATE(1379)] = 33996, - [SMALL_STATE(1380)] = 34012, - [SMALL_STATE(1381)] = 34024, - [SMALL_STATE(1382)] = 34038, - [SMALL_STATE(1383)] = 34050, - [SMALL_STATE(1384)] = 34066, - [SMALL_STATE(1385)] = 34082, - [SMALL_STATE(1386)] = 34094, - [SMALL_STATE(1387)] = 34110, - [SMALL_STATE(1388)] = 34124, - [SMALL_STATE(1389)] = 34140, - [SMALL_STATE(1390)] = 34156, - [SMALL_STATE(1391)] = 34168, - [SMALL_STATE(1392)] = 34182, - [SMALL_STATE(1393)] = 34198, - [SMALL_STATE(1394)] = 34212, - [SMALL_STATE(1395)] = 34224, - [SMALL_STATE(1396)] = 34240, - [SMALL_STATE(1397)] = 34256, - [SMALL_STATE(1398)] = 34268, - [SMALL_STATE(1399)] = 34284, - [SMALL_STATE(1400)] = 34297, - [SMALL_STATE(1401)] = 34310, - [SMALL_STATE(1402)] = 34323, - [SMALL_STATE(1403)] = 34336, - [SMALL_STATE(1404)] = 34349, - [SMALL_STATE(1405)] = 34362, - [SMALL_STATE(1406)] = 34375, - [SMALL_STATE(1407)] = 34388, - [SMALL_STATE(1408)] = 34401, - [SMALL_STATE(1409)] = 34414, - [SMALL_STATE(1410)] = 34427, - [SMALL_STATE(1411)] = 34440, - [SMALL_STATE(1412)] = 34453, - [SMALL_STATE(1413)] = 34466, - [SMALL_STATE(1414)] = 34479, - [SMALL_STATE(1415)] = 34492, - [SMALL_STATE(1416)] = 34505, - [SMALL_STATE(1417)] = 34518, - [SMALL_STATE(1418)] = 34531, - [SMALL_STATE(1419)] = 34544, - [SMALL_STATE(1420)] = 34557, - [SMALL_STATE(1421)] = 34570, - [SMALL_STATE(1422)] = 34583, - [SMALL_STATE(1423)] = 34596, - [SMALL_STATE(1424)] = 34609, - [SMALL_STATE(1425)] = 34622, - [SMALL_STATE(1426)] = 34635, - [SMALL_STATE(1427)] = 34648, - [SMALL_STATE(1428)] = 34661, - [SMALL_STATE(1429)] = 34674, - [SMALL_STATE(1430)] = 34687, - [SMALL_STATE(1431)] = 34700, - [SMALL_STATE(1432)] = 34713, - [SMALL_STATE(1433)] = 34726, - [SMALL_STATE(1434)] = 34739, - [SMALL_STATE(1435)] = 34752, - [SMALL_STATE(1436)] = 34763, - [SMALL_STATE(1437)] = 34776, - [SMALL_STATE(1438)] = 34787, - [SMALL_STATE(1439)] = 34800, - [SMALL_STATE(1440)] = 34813, - [SMALL_STATE(1441)] = 34826, - [SMALL_STATE(1442)] = 34839, - [SMALL_STATE(1443)] = 34852, - [SMALL_STATE(1444)] = 34865, - [SMALL_STATE(1445)] = 34878, - [SMALL_STATE(1446)] = 34891, - [SMALL_STATE(1447)] = 34904, - [SMALL_STATE(1448)] = 34915, - [SMALL_STATE(1449)] = 34928, - [SMALL_STATE(1450)] = 34941, - [SMALL_STATE(1451)] = 34954, - [SMALL_STATE(1452)] = 34967, - [SMALL_STATE(1453)] = 34980, - [SMALL_STATE(1454)] = 34991, - [SMALL_STATE(1455)] = 35002, - [SMALL_STATE(1456)] = 35015, - [SMALL_STATE(1457)] = 35026, - [SMALL_STATE(1458)] = 35039, - [SMALL_STATE(1459)] = 35052, - [SMALL_STATE(1460)] = 35065, - [SMALL_STATE(1461)] = 35078, - [SMALL_STATE(1462)] = 35091, - [SMALL_STATE(1463)] = 35104, - [SMALL_STATE(1464)] = 35117, - [SMALL_STATE(1465)] = 35130, - [SMALL_STATE(1466)] = 35143, - [SMALL_STATE(1467)] = 35156, - [SMALL_STATE(1468)] = 35169, - [SMALL_STATE(1469)] = 35182, - [SMALL_STATE(1470)] = 35195, - [SMALL_STATE(1471)] = 35208, - [SMALL_STATE(1472)] = 35219, - [SMALL_STATE(1473)] = 35232, - [SMALL_STATE(1474)] = 35243, - [SMALL_STATE(1475)] = 35256, - [SMALL_STATE(1476)] = 35267, - [SMALL_STATE(1477)] = 35280, - [SMALL_STATE(1478)] = 35293, - [SMALL_STATE(1479)] = 35306, - [SMALL_STATE(1480)] = 35319, - [SMALL_STATE(1481)] = 35332, - [SMALL_STATE(1482)] = 35345, - [SMALL_STATE(1483)] = 35358, - [SMALL_STATE(1484)] = 35371, - [SMALL_STATE(1485)] = 35384, - [SMALL_STATE(1486)] = 35397, - [SMALL_STATE(1487)] = 35410, - [SMALL_STATE(1488)] = 35421, - [SMALL_STATE(1489)] = 35434, - [SMALL_STATE(1490)] = 35447, - [SMALL_STATE(1491)] = 35460, - [SMALL_STATE(1492)] = 35473, - [SMALL_STATE(1493)] = 35486, - [SMALL_STATE(1494)] = 35497, - [SMALL_STATE(1495)] = 35510, - [SMALL_STATE(1496)] = 35521, - [SMALL_STATE(1497)] = 35534, - [SMALL_STATE(1498)] = 35547, - [SMALL_STATE(1499)] = 35560, - [SMALL_STATE(1500)] = 35573, - [SMALL_STATE(1501)] = 35586, - [SMALL_STATE(1502)] = 35599, - [SMALL_STATE(1503)] = 35612, - [SMALL_STATE(1504)] = 35625, - [SMALL_STATE(1505)] = 35638, - [SMALL_STATE(1506)] = 35651, - [SMALL_STATE(1507)] = 35664, - [SMALL_STATE(1508)] = 35677, - [SMALL_STATE(1509)] = 35690, - [SMALL_STATE(1510)] = 35703, - [SMALL_STATE(1511)] = 35716, - [SMALL_STATE(1512)] = 35729, - [SMALL_STATE(1513)] = 35742, - [SMALL_STATE(1514)] = 35755, - [SMALL_STATE(1515)] = 35768, - [SMALL_STATE(1516)] = 35779, - [SMALL_STATE(1517)] = 35790, - [SMALL_STATE(1518)] = 35803, - [SMALL_STATE(1519)] = 35816, - [SMALL_STATE(1520)] = 35827, - [SMALL_STATE(1521)] = 35838, - [SMALL_STATE(1522)] = 35851, - [SMALL_STATE(1523)] = 35864, - [SMALL_STATE(1524)] = 35877, - [SMALL_STATE(1525)] = 35890, - [SMALL_STATE(1526)] = 35903, - [SMALL_STATE(1527)] = 35916, - [SMALL_STATE(1528)] = 35929, - [SMALL_STATE(1529)] = 35942, - [SMALL_STATE(1530)] = 35955, - [SMALL_STATE(1531)] = 35966, - [SMALL_STATE(1532)] = 35977, - [SMALL_STATE(1533)] = 35990, - [SMALL_STATE(1534)] = 36003, - [SMALL_STATE(1535)] = 36014, - [SMALL_STATE(1536)] = 36025, - [SMALL_STATE(1537)] = 36038, - [SMALL_STATE(1538)] = 36051, - [SMALL_STATE(1539)] = 36062, - [SMALL_STATE(1540)] = 36075, - [SMALL_STATE(1541)] = 36088, - [SMALL_STATE(1542)] = 36101, - [SMALL_STATE(1543)] = 36114, - [SMALL_STATE(1544)] = 36127, - [SMALL_STATE(1545)] = 36140, - [SMALL_STATE(1546)] = 36153, - [SMALL_STATE(1547)] = 36166, - [SMALL_STATE(1548)] = 36177, - [SMALL_STATE(1549)] = 36190, - [SMALL_STATE(1550)] = 36203, - [SMALL_STATE(1551)] = 36216, - [SMALL_STATE(1552)] = 36229, - [SMALL_STATE(1553)] = 36242, - [SMALL_STATE(1554)] = 36255, - [SMALL_STATE(1555)] = 36265, - [SMALL_STATE(1556)] = 36275, - [SMALL_STATE(1557)] = 36285, - [SMALL_STATE(1558)] = 36295, - [SMALL_STATE(1559)] = 36305, - [SMALL_STATE(1560)] = 36315, - [SMALL_STATE(1561)] = 36325, - [SMALL_STATE(1562)] = 36335, - [SMALL_STATE(1563)] = 36345, - [SMALL_STATE(1564)] = 36355, - [SMALL_STATE(1565)] = 36365, - [SMALL_STATE(1566)] = 36375, - [SMALL_STATE(1567)] = 36385, - [SMALL_STATE(1568)] = 36395, - [SMALL_STATE(1569)] = 36405, - [SMALL_STATE(1570)] = 36415, - [SMALL_STATE(1571)] = 36425, - [SMALL_STATE(1572)] = 36435, - [SMALL_STATE(1573)] = 36445, - [SMALL_STATE(1574)] = 36455, - [SMALL_STATE(1575)] = 36465, - [SMALL_STATE(1576)] = 36475, - [SMALL_STATE(1577)] = 36485, - [SMALL_STATE(1578)] = 36495, - [SMALL_STATE(1579)] = 36505, - [SMALL_STATE(1580)] = 36515, - [SMALL_STATE(1581)] = 36525, - [SMALL_STATE(1582)] = 36535, - [SMALL_STATE(1583)] = 36545, - [SMALL_STATE(1584)] = 36555, - [SMALL_STATE(1585)] = 36565, - [SMALL_STATE(1586)] = 36575, - [SMALL_STATE(1587)] = 36585, - [SMALL_STATE(1588)] = 36595, - [SMALL_STATE(1589)] = 36605, - [SMALL_STATE(1590)] = 36615, - [SMALL_STATE(1591)] = 36625, - [SMALL_STATE(1592)] = 36635, - [SMALL_STATE(1593)] = 36645, - [SMALL_STATE(1594)] = 36655, - [SMALL_STATE(1595)] = 36665, - [SMALL_STATE(1596)] = 36675, - [SMALL_STATE(1597)] = 36685, - [SMALL_STATE(1598)] = 36695, - [SMALL_STATE(1599)] = 36705, - [SMALL_STATE(1600)] = 36715, - [SMALL_STATE(1601)] = 36725, - [SMALL_STATE(1602)] = 36735, - [SMALL_STATE(1603)] = 36745, - [SMALL_STATE(1604)] = 36755, - [SMALL_STATE(1605)] = 36765, - [SMALL_STATE(1606)] = 36775, - [SMALL_STATE(1607)] = 36785, - [SMALL_STATE(1608)] = 36795, - [SMALL_STATE(1609)] = 36805, - [SMALL_STATE(1610)] = 36815, - [SMALL_STATE(1611)] = 36825, - [SMALL_STATE(1612)] = 36835, - [SMALL_STATE(1613)] = 36845, - [SMALL_STATE(1614)] = 36855, - [SMALL_STATE(1615)] = 36865, - [SMALL_STATE(1616)] = 36875, - [SMALL_STATE(1617)] = 36885, - [SMALL_STATE(1618)] = 36895, - [SMALL_STATE(1619)] = 36905, - [SMALL_STATE(1620)] = 36915, - [SMALL_STATE(1621)] = 36925, - [SMALL_STATE(1622)] = 36935, - [SMALL_STATE(1623)] = 36945, - [SMALL_STATE(1624)] = 36955, - [SMALL_STATE(1625)] = 36965, - [SMALL_STATE(1626)] = 36975, - [SMALL_STATE(1627)] = 36985, - [SMALL_STATE(1628)] = 36995, - [SMALL_STATE(1629)] = 37005, - [SMALL_STATE(1630)] = 37015, - [SMALL_STATE(1631)] = 37025, - [SMALL_STATE(1632)] = 37035, - [SMALL_STATE(1633)] = 37045, - [SMALL_STATE(1634)] = 37055, - [SMALL_STATE(1635)] = 37065, - [SMALL_STATE(1636)] = 37075, - [SMALL_STATE(1637)] = 37085, - [SMALL_STATE(1638)] = 37095, - [SMALL_STATE(1639)] = 37105, - [SMALL_STATE(1640)] = 37115, - [SMALL_STATE(1641)] = 37125, - [SMALL_STATE(1642)] = 37135, - [SMALL_STATE(1643)] = 37145, - [SMALL_STATE(1644)] = 37155, - [SMALL_STATE(1645)] = 37165, - [SMALL_STATE(1646)] = 37175, - [SMALL_STATE(1647)] = 37185, - [SMALL_STATE(1648)] = 37195, - [SMALL_STATE(1649)] = 37205, - [SMALL_STATE(1650)] = 37215, - [SMALL_STATE(1651)] = 37225, + [SMALL_STATE(585)] = 0, + [SMALL_STATE(586)] = 67, + [SMALL_STATE(587)] = 134, + [SMALL_STATE(588)] = 203, + [SMALL_STATE(589)] = 270, + [SMALL_STATE(590)] = 337, + [SMALL_STATE(591)] = 406, + [SMALL_STATE(592)] = 473, + [SMALL_STATE(593)] = 542, + [SMALL_STATE(594)] = 609, + [SMALL_STATE(595)] = 676, + [SMALL_STATE(596)] = 745, + [SMALL_STATE(597)] = 814, + [SMALL_STATE(598)] = 883, + [SMALL_STATE(599)] = 950, + [SMALL_STATE(600)] = 1017, + [SMALL_STATE(601)] = 1092, + [SMALL_STATE(602)] = 1152, + [SMALL_STATE(603)] = 1212, + [SMALL_STATE(604)] = 1272, + [SMALL_STATE(605)] = 1330, + [SMALL_STATE(606)] = 1387, + [SMALL_STATE(607)] = 1444, + [SMALL_STATE(608)] = 1501, + [SMALL_STATE(609)] = 1560, + [SMALL_STATE(610)] = 1617, + [SMALL_STATE(611)] = 1676, + [SMALL_STATE(612)] = 1733, + [SMALL_STATE(613)] = 1792, + [SMALL_STATE(614)] = 1849, + [SMALL_STATE(615)] = 1912, + [SMALL_STATE(616)] = 1975, + [SMALL_STATE(617)] = 2031, + [SMALL_STATE(618)] = 2088, + [SMALL_STATE(619)] = 2145, + [SMALL_STATE(620)] = 2202, + [SMALL_STATE(621)] = 2259, + [SMALL_STATE(622)] = 2316, + [SMALL_STATE(623)] = 2374, + [SMALL_STATE(624)] = 2442, + [SMALL_STATE(625)] = 2522, + [SMALL_STATE(626)] = 2602, + [SMALL_STATE(627)] = 2682, + [SMALL_STATE(628)] = 2762, + [SMALL_STATE(629)] = 2838, + [SMALL_STATE(630)] = 2914, + [SMALL_STATE(631)] = 2986, + [SMALL_STATE(632)] = 3058, + [SMALL_STATE(633)] = 3120, + [SMALL_STATE(634)] = 3182, + [SMALL_STATE(635)] = 3250, + [SMALL_STATE(636)] = 3308, + [SMALL_STATE(637)] = 3358, + [SMALL_STATE(638)] = 3414, + [SMALL_STATE(639)] = 3476, + [SMALL_STATE(640)] = 3566, + [SMALL_STATE(641)] = 3658, + [SMALL_STATE(642)] = 3760, + [SMALL_STATE(643)] = 3810, + [SMALL_STATE(644)] = 3866, + [SMALL_STATE(645)] = 3922, + [SMALL_STATE(646)] = 3976, + [SMALL_STATE(647)] = 4026, + [SMALL_STATE(648)] = 4076, + [SMALL_STATE(649)] = 4132, + [SMALL_STATE(650)] = 4187, + [SMALL_STATE(651)] = 4236, + [SMALL_STATE(652)] = 4285, + [SMALL_STATE(653)] = 4336, + [SMALL_STATE(654)] = 4385, + [SMALL_STATE(655)] = 4434, + [SMALL_STATE(656)] = 4482, + [SMALL_STATE(657)] = 4530, + [SMALL_STATE(658)] = 4632, + [SMALL_STATE(659)] = 4680, + [SMALL_STATE(660)] = 4728, + [SMALL_STATE(661)] = 4776, + [SMALL_STATE(662)] = 4826, + [SMALL_STATE(663)] = 4874, + [SMALL_STATE(664)] = 4922, + [SMALL_STATE(665)] = 4970, + [SMALL_STATE(666)] = 5018, + [SMALL_STATE(667)] = 5066, + [SMALL_STATE(668)] = 5114, + [SMALL_STATE(669)] = 5162, + [SMALL_STATE(670)] = 5210, + [SMALL_STATE(671)] = 5258, + [SMALL_STATE(672)] = 5306, + [SMALL_STATE(673)] = 5354, + [SMALL_STATE(674)] = 5402, + [SMALL_STATE(675)] = 5450, + [SMALL_STATE(676)] = 5498, + [SMALL_STATE(677)] = 5546, + [SMALL_STATE(678)] = 5596, + [SMALL_STATE(679)] = 5644, + [SMALL_STATE(680)] = 5692, + [SMALL_STATE(681)] = 5740, + [SMALL_STATE(682)] = 5788, + [SMALL_STATE(683)] = 5836, + [SMALL_STATE(684)] = 5884, + [SMALL_STATE(685)] = 5932, + [SMALL_STATE(686)] = 5980, + [SMALL_STATE(687)] = 6028, + [SMALL_STATE(688)] = 6076, + [SMALL_STATE(689)] = 6124, + [SMALL_STATE(690)] = 6172, + [SMALL_STATE(691)] = 6220, + [SMALL_STATE(692)] = 6268, + [SMALL_STATE(693)] = 6316, + [SMALL_STATE(694)] = 6364, + [SMALL_STATE(695)] = 6412, + [SMALL_STATE(696)] = 6460, + [SMALL_STATE(697)] = 6508, + [SMALL_STATE(698)] = 6556, + [SMALL_STATE(699)] = 6614, + [SMALL_STATE(700)] = 6662, + [SMALL_STATE(701)] = 6720, + [SMALL_STATE(702)] = 6768, + [SMALL_STATE(703)] = 6816, + [SMALL_STATE(704)] = 6864, + [SMALL_STATE(705)] = 6912, + [SMALL_STATE(706)] = 6960, + [SMALL_STATE(707)] = 7008, + [SMALL_STATE(708)] = 7056, + [SMALL_STATE(709)] = 7104, + [SMALL_STATE(710)] = 7152, + [SMALL_STATE(711)] = 7200, + [SMALL_STATE(712)] = 7248, + [SMALL_STATE(713)] = 7296, + [SMALL_STATE(714)] = 7344, + [SMALL_STATE(715)] = 7392, + [SMALL_STATE(716)] = 7440, + [SMALL_STATE(717)] = 7488, + [SMALL_STATE(718)] = 7536, + [SMALL_STATE(719)] = 7584, + [SMALL_STATE(720)] = 7632, + [SMALL_STATE(721)] = 7680, + [SMALL_STATE(722)] = 7728, + [SMALL_STATE(723)] = 7776, + [SMALL_STATE(724)] = 7824, + [SMALL_STATE(725)] = 7872, + [SMALL_STATE(726)] = 7920, + [SMALL_STATE(727)] = 7968, + [SMALL_STATE(728)] = 8016, + [SMALL_STATE(729)] = 8064, + [SMALL_STATE(730)] = 8112, + [SMALL_STATE(731)] = 8163, + [SMALL_STATE(732)] = 8264, + [SMALL_STATE(733)] = 8315, + [SMALL_STATE(734)] = 8366, + [SMALL_STATE(735)] = 8417, + [SMALL_STATE(736)] = 8462, + [SMALL_STATE(737)] = 8513, + [SMALL_STATE(738)] = 8564, + [SMALL_STATE(739)] = 8609, + [SMALL_STATE(740)] = 8654, + [SMALL_STATE(741)] = 8699, + [SMALL_STATE(742)] = 8748, + [SMALL_STATE(743)] = 8800, + [SMALL_STATE(744)] = 8862, + [SMALL_STATE(745)] = 8918, + [SMALL_STATE(746)] = 8980, + [SMALL_STATE(747)] = 9030, + [SMALL_STATE(748)] = 9080, + [SMALL_STATE(749)] = 9164, + [SMALL_STATE(750)] = 9246, + [SMALL_STATE(751)] = 9320, + [SMALL_STATE(752)] = 9394, + [SMALL_STATE(753)] = 9468, + [SMALL_STATE(754)] = 9542, + [SMALL_STATE(755)] = 9612, + [SMALL_STATE(756)] = 9682, + [SMALL_STATE(757)] = 9748, + [SMALL_STATE(758)] = 9804, + [SMALL_STATE(759)] = 9870, + [SMALL_STATE(760)] = 9926, + [SMALL_STATE(761)] = 9978, + [SMALL_STATE(762)] = 10028, + [SMALL_STATE(763)] = 10078, + [SMALL_STATE(764)] = 10128, + [SMALL_STATE(765)] = 10171, + [SMALL_STATE(766)] = 10214, + [SMALL_STATE(767)] = 10257, + [SMALL_STATE(768)] = 10300, + [SMALL_STATE(769)] = 10343, + [SMALL_STATE(770)] = 10386, + [SMALL_STATE(771)] = 10431, + [SMALL_STATE(772)] = 10474, + [SMALL_STATE(773)] = 10517, + [SMALL_STATE(774)] = 10560, + [SMALL_STATE(775)] = 10603, + [SMALL_STATE(776)] = 10646, + [SMALL_STATE(777)] = 10689, + [SMALL_STATE(778)] = 10732, + [SMALL_STATE(779)] = 10775, + [SMALL_STATE(780)] = 10820, + [SMALL_STATE(781)] = 10863, + [SMALL_STATE(782)] = 10906, + [SMALL_STATE(783)] = 10949, + [SMALL_STATE(784)] = 10992, + [SMALL_STATE(785)] = 11035, + [SMALL_STATE(786)] = 11078, + [SMALL_STATE(787)] = 11121, + [SMALL_STATE(788)] = 11164, + [SMALL_STATE(789)] = 11207, + [SMALL_STATE(790)] = 11250, + [SMALL_STATE(791)] = 11293, + [SMALL_STATE(792)] = 11336, + [SMALL_STATE(793)] = 11379, + [SMALL_STATE(794)] = 11422, + [SMALL_STATE(795)] = 11465, + [SMALL_STATE(796)] = 11508, + [SMALL_STATE(797)] = 11551, + [SMALL_STATE(798)] = 11594, + [SMALL_STATE(799)] = 11637, + [SMALL_STATE(800)] = 11680, + [SMALL_STATE(801)] = 11723, + [SMALL_STATE(802)] = 11766, + [SMALL_STATE(803)] = 11809, + [SMALL_STATE(804)] = 11852, + [SMALL_STATE(805)] = 11895, + [SMALL_STATE(806)] = 11938, + [SMALL_STATE(807)] = 11981, + [SMALL_STATE(808)] = 12024, + [SMALL_STATE(809)] = 12067, + [SMALL_STATE(810)] = 12110, + [SMALL_STATE(811)] = 12153, + [SMALL_STATE(812)] = 12196, + [SMALL_STATE(813)] = 12239, + [SMALL_STATE(814)] = 12282, + [SMALL_STATE(815)] = 12325, + [SMALL_STATE(816)] = 12368, + [SMALL_STATE(817)] = 12411, + [SMALL_STATE(818)] = 12454, + [SMALL_STATE(819)] = 12497, + [SMALL_STATE(820)] = 12540, + [SMALL_STATE(821)] = 12583, + [SMALL_STATE(822)] = 12626, + [SMALL_STATE(823)] = 12669, + [SMALL_STATE(824)] = 12712, + [SMALL_STATE(825)] = 12755, + [SMALL_STATE(826)] = 12798, + [SMALL_STATE(827)] = 12841, + [SMALL_STATE(828)] = 12884, + [SMALL_STATE(829)] = 12927, + [SMALL_STATE(830)] = 12970, + [SMALL_STATE(831)] = 13013, + [SMALL_STATE(832)] = 13056, + [SMALL_STATE(833)] = 13099, + [SMALL_STATE(834)] = 13142, + [SMALL_STATE(835)] = 13185, + [SMALL_STATE(836)] = 13228, + [SMALL_STATE(837)] = 13271, + [SMALL_STATE(838)] = 13314, + [SMALL_STATE(839)] = 13357, + [SMALL_STATE(840)] = 13400, + [SMALL_STATE(841)] = 13443, + [SMALL_STATE(842)] = 13495, + [SMALL_STATE(843)] = 13547, + [SMALL_STATE(844)] = 13591, + [SMALL_STATE(845)] = 13633, + [SMALL_STATE(846)] = 13675, + [SMALL_STATE(847)] = 13717, + [SMALL_STATE(848)] = 13759, + [SMALL_STATE(849)] = 13801, + [SMALL_STATE(850)] = 13852, + [SMALL_STATE(851)] = 13897, + [SMALL_STATE(852)] = 13948, + [SMALL_STATE(853)] = 13989, + [SMALL_STATE(854)] = 14033, + [SMALL_STATE(855)] = 14087, + [SMALL_STATE(856)] = 14181, + [SMALL_STATE(857)] = 14271, + [SMALL_STATE(858)] = 14340, + [SMALL_STATE(859)] = 14429, + [SMALL_STATE(860)] = 14518, + [SMALL_STATE(861)] = 14607, + [SMALL_STATE(862)] = 14652, + [SMALL_STATE(863)] = 14741, + [SMALL_STATE(864)] = 14832, + [SMALL_STATE(865)] = 14871, + [SMALL_STATE(866)] = 14962, + [SMALL_STATE(867)] = 15015, + [SMALL_STATE(868)] = 15060, + [SMALL_STATE(869)] = 15105, + [SMALL_STATE(870)] = 15150, + [SMALL_STATE(871)] = 15241, + [SMALL_STATE(872)] = 15332, + [SMALL_STATE(873)] = 15371, + [SMALL_STATE(874)] = 15416, + [SMALL_STATE(875)] = 15461, + [SMALL_STATE(876)] = 15506, + [SMALL_STATE(877)] = 15551, + [SMALL_STATE(878)] = 15630, + [SMALL_STATE(879)] = 15707, + [SMALL_STATE(880)] = 15746, + [SMALL_STATE(881)] = 15815, + [SMALL_STATE(882)] = 15884, + [SMALL_STATE(883)] = 15953, + [SMALL_STATE(884)] = 16018, + [SMALL_STATE(885)] = 16083, + [SMALL_STATE(886)] = 16144, + [SMALL_STATE(887)] = 16205, + [SMALL_STATE(888)] = 16256, + [SMALL_STATE(889)] = 16307, + [SMALL_STATE(890)] = 16364, + [SMALL_STATE(891)] = 16411, + [SMALL_STATE(892)] = 16458, + [SMALL_STATE(893)] = 16503, + [SMALL_STATE(894)] = 16554, + [SMALL_STATE(895)] = 16611, + [SMALL_STATE(896)] = 16656, + [SMALL_STATE(897)] = 16701, + [SMALL_STATE(898)] = 16744, + [SMALL_STATE(899)] = 16783, + [SMALL_STATE(900)] = 16874, + [SMALL_STATE(901)] = 16919, + [SMALL_STATE(902)] = 16964, + [SMALL_STATE(903)] = 17009, + [SMALL_STATE(904)] = 17054, + [SMALL_STATE(905)] = 17145, + [SMALL_STATE(906)] = 17236, + [SMALL_STATE(907)] = 17281, + [SMALL_STATE(908)] = 17326, + [SMALL_STATE(909)] = 17371, + [SMALL_STATE(910)] = 17416, + [SMALL_STATE(911)] = 17507, + [SMALL_STATE(912)] = 17598, + [SMALL_STATE(913)] = 17643, + [SMALL_STATE(914)] = 17734, + [SMALL_STATE(915)] = 17787, + [SMALL_STATE(916)] = 17878, + [SMALL_STATE(917)] = 17931, + [SMALL_STATE(918)] = 18022, + [SMALL_STATE(919)] = 18075, + [SMALL_STATE(920)] = 18166, + [SMALL_STATE(921)] = 18219, + [SMALL_STATE(922)] = 18310, + [SMALL_STATE(923)] = 18401, + [SMALL_STATE(924)] = 18492, + [SMALL_STATE(925)] = 18583, + [SMALL_STATE(926)] = 18674, + [SMALL_STATE(927)] = 18765, + [SMALL_STATE(928)] = 18818, + [SMALL_STATE(929)] = 18862, + [SMALL_STATE(930)] = 18906, + [SMALL_STATE(931)] = 18994, + [SMALL_STATE(932)] = 19082, + [SMALL_STATE(933)] = 19170, + [SMALL_STATE(934)] = 19258, + [SMALL_STATE(935)] = 19298, + [SMALL_STATE(936)] = 19386, + [SMALL_STATE(937)] = 19474, + [SMALL_STATE(938)] = 19562, + [SMALL_STATE(939)] = 19650, + [SMALL_STATE(940)] = 19738, + [SMALL_STATE(941)] = 19826, + [SMALL_STATE(942)] = 19864, + [SMALL_STATE(943)] = 19904, + [SMALL_STATE(944)] = 19944, + [SMALL_STATE(945)] = 19984, + [SMALL_STATE(946)] = 20062, + [SMALL_STATE(947)] = 20138, + [SMALL_STATE(948)] = 20206, + [SMALL_STATE(949)] = 20274, + [SMALL_STATE(950)] = 20342, + [SMALL_STATE(951)] = 20410, + [SMALL_STATE(952)] = 20474, + [SMALL_STATE(953)] = 20538, + [SMALL_STATE(954)] = 20598, + [SMALL_STATE(955)] = 20658, + [SMALL_STATE(956)] = 20708, + [SMALL_STATE(957)] = 20758, + [SMALL_STATE(958)] = 20814, + [SMALL_STATE(959)] = 20860, + [SMALL_STATE(960)] = 20906, + [SMALL_STATE(961)] = 20956, + [SMALL_STATE(962)] = 21012, + [SMALL_STATE(963)] = 21100, + [SMALL_STATE(964)] = 21188, + [SMALL_STATE(965)] = 21236, + [SMALL_STATE(966)] = 21324, + [SMALL_STATE(967)] = 21368, + [SMALL_STATE(968)] = 21412, + [SMALL_STATE(969)] = 21456, + [SMALL_STATE(970)] = 21500, + [SMALL_STATE(971)] = 21588, + [SMALL_STATE(972)] = 21676, + [SMALL_STATE(973)] = 21720, + [SMALL_STATE(974)] = 21808, + [SMALL_STATE(975)] = 21846, + [SMALL_STATE(976)] = 21934, + [SMALL_STATE(977)] = 22022, + [SMALL_STATE(978)] = 22110, + [SMALL_STATE(979)] = 22198, + [SMALL_STATE(980)] = 22242, + [SMALL_STATE(981)] = 22330, + [SMALL_STATE(982)] = 22368, + [SMALL_STATE(983)] = 22406, + [SMALL_STATE(984)] = 22448, + [SMALL_STATE(985)] = 22486, + [SMALL_STATE(986)] = 22524, + [SMALL_STATE(987)] = 22580, + [SMALL_STATE(988)] = 22620, + [SMALL_STATE(989)] = 22670, + [SMALL_STATE(990)] = 22708, + [SMALL_STATE(991)] = 22754, + [SMALL_STATE(992)] = 22800, + [SMALL_STATE(993)] = 22856, + [SMALL_STATE(994)] = 22900, + [SMALL_STATE(995)] = 22950, + [SMALL_STATE(996)] = 23000, + [SMALL_STATE(997)] = 23060, + [SMALL_STATE(998)] = 23120, + [SMALL_STATE(999)] = 23184, + [SMALL_STATE(1000)] = 23248, + [SMALL_STATE(1001)] = 23316, + [SMALL_STATE(1002)] = 23384, + [SMALL_STATE(1003)] = 23452, + [SMALL_STATE(1004)] = 23520, + [SMALL_STATE(1005)] = 23596, + [SMALL_STATE(1006)] = 23674, + [SMALL_STATE(1007)] = 23711, + [SMALL_STATE(1008)] = 23748, + [SMALL_STATE(1009)] = 23785, + [SMALL_STATE(1010)] = 23832, + [SMALL_STATE(1011)] = 23869, + [SMALL_STATE(1012)] = 23906, + [SMALL_STATE(1013)] = 23953, + [SMALL_STATE(1014)] = 24000, + [SMALL_STATE(1015)] = 24037, + [SMALL_STATE(1016)] = 24074, + [SMALL_STATE(1017)] = 24111, + [SMALL_STATE(1018)] = 24148, + [SMALL_STATE(1019)] = 24185, + [SMALL_STATE(1020)] = 24222, + [SMALL_STATE(1021)] = 24259, + [SMALL_STATE(1022)] = 24296, + [SMALL_STATE(1023)] = 24333, + [SMALL_STATE(1024)] = 24370, + [SMALL_STATE(1025)] = 24407, + [SMALL_STATE(1026)] = 24444, + [SMALL_STATE(1027)] = 24481, + [SMALL_STATE(1028)] = 24518, + [SMALL_STATE(1029)] = 24557, + [SMALL_STATE(1030)] = 24594, + [SMALL_STATE(1031)] = 24631, + [SMALL_STATE(1032)] = 24668, + [SMALL_STATE(1033)] = 24705, + [SMALL_STATE(1034)] = 24742, + [SMALL_STATE(1035)] = 24779, + [SMALL_STATE(1036)] = 24816, + [SMALL_STATE(1037)] = 24853, + [SMALL_STATE(1038)] = 24890, + [SMALL_STATE(1039)] = 24927, + [SMALL_STATE(1040)] = 24964, + [SMALL_STATE(1041)] = 25001, + [SMALL_STATE(1042)] = 25038, + [SMALL_STATE(1043)] = 25075, + [SMALL_STATE(1044)] = 25112, + [SMALL_STATE(1045)] = 25149, + [SMALL_STATE(1046)] = 25186, + [SMALL_STATE(1047)] = 25223, + [SMALL_STATE(1048)] = 25260, + [SMALL_STATE(1049)] = 25299, + [SMALL_STATE(1050)] = 25336, + [SMALL_STATE(1051)] = 25373, + [SMALL_STATE(1052)] = 25410, + [SMALL_STATE(1053)] = 25447, + [SMALL_STATE(1054)] = 25484, + [SMALL_STATE(1055)] = 25531, + [SMALL_STATE(1056)] = 25568, + [SMALL_STATE(1057)] = 25605, + [SMALL_STATE(1058)] = 25652, + [SMALL_STATE(1059)] = 25689, + [SMALL_STATE(1060)] = 25726, + [SMALL_STATE(1061)] = 25763, + [SMALL_STATE(1062)] = 25800, + [SMALL_STATE(1063)] = 25837, + [SMALL_STATE(1064)] = 25874, + [SMALL_STATE(1065)] = 25921, + [SMALL_STATE(1066)] = 25958, + [SMALL_STATE(1067)] = 25995, + [SMALL_STATE(1068)] = 26032, + [SMALL_STATE(1069)] = 26069, + [SMALL_STATE(1070)] = 26106, + [SMALL_STATE(1071)] = 26143, + [SMALL_STATE(1072)] = 26180, + [SMALL_STATE(1073)] = 26217, + [SMALL_STATE(1074)] = 26254, + [SMALL_STATE(1075)] = 26291, + [SMALL_STATE(1076)] = 26328, + [SMALL_STATE(1077)] = 26365, + [SMALL_STATE(1078)] = 26402, + [SMALL_STATE(1079)] = 26439, + [SMALL_STATE(1080)] = 26476, + [SMALL_STATE(1081)] = 26513, + [SMALL_STATE(1082)] = 26550, + [SMALL_STATE(1083)] = 26587, + [SMALL_STATE(1084)] = 26624, + [SMALL_STATE(1085)] = 26661, + [SMALL_STATE(1086)] = 26698, + [SMALL_STATE(1087)] = 26735, + [SMALL_STATE(1088)] = 26774, + [SMALL_STATE(1089)] = 26811, + [SMALL_STATE(1090)] = 26848, + [SMALL_STATE(1091)] = 26885, + [SMALL_STATE(1092)] = 26922, + [SMALL_STATE(1093)] = 26969, + [SMALL_STATE(1094)] = 27006, + [SMALL_STATE(1095)] = 27045, + [SMALL_STATE(1096)] = 27081, + [SMALL_STATE(1097)] = 27117, + [SMALL_STATE(1098)] = 27153, + [SMALL_STATE(1099)] = 27189, + [SMALL_STATE(1100)] = 27225, + [SMALL_STATE(1101)] = 27261, + [SMALL_STATE(1102)] = 27297, + [SMALL_STATE(1103)] = 27333, + [SMALL_STATE(1104)] = 27369, + [SMALL_STATE(1105)] = 27405, + [SMALL_STATE(1106)] = 27441, + [SMALL_STATE(1107)] = 27477, + [SMALL_STATE(1108)] = 27513, + [SMALL_STATE(1109)] = 27549, + [SMALL_STATE(1110)] = 27585, + [SMALL_STATE(1111)] = 27621, + [SMALL_STATE(1112)] = 27657, + [SMALL_STATE(1113)] = 27693, + [SMALL_STATE(1114)] = 27729, + [SMALL_STATE(1115)] = 27765, + [SMALL_STATE(1116)] = 27801, + [SMALL_STATE(1117)] = 27837, + [SMALL_STATE(1118)] = 27873, + [SMALL_STATE(1119)] = 27909, + [SMALL_STATE(1120)] = 27945, + [SMALL_STATE(1121)] = 27981, + [SMALL_STATE(1122)] = 28017, + [SMALL_STATE(1123)] = 28053, + [SMALL_STATE(1124)] = 28089, + [SMALL_STATE(1125)] = 28125, + [SMALL_STATE(1126)] = 28161, + [SMALL_STATE(1127)] = 28199, + [SMALL_STATE(1128)] = 28235, + [SMALL_STATE(1129)] = 28271, + [SMALL_STATE(1130)] = 28307, + [SMALL_STATE(1131)] = 28343, + [SMALL_STATE(1132)] = 28379, + [SMALL_STATE(1133)] = 28415, + [SMALL_STATE(1134)] = 28451, + [SMALL_STATE(1135)] = 28487, + [SMALL_STATE(1136)] = 28523, + [SMALL_STATE(1137)] = 28559, + [SMALL_STATE(1138)] = 28595, + [SMALL_STATE(1139)] = 28631, + [SMALL_STATE(1140)] = 28667, + [SMALL_STATE(1141)] = 28703, + [SMALL_STATE(1142)] = 28739, + [SMALL_STATE(1143)] = 28775, + [SMALL_STATE(1144)] = 28811, + [SMALL_STATE(1145)] = 28847, + [SMALL_STATE(1146)] = 28883, + [SMALL_STATE(1147)] = 28919, + [SMALL_STATE(1148)] = 28955, + [SMALL_STATE(1149)] = 28991, + [SMALL_STATE(1150)] = 29027, + [SMALL_STATE(1151)] = 29063, + [SMALL_STATE(1152)] = 29099, + [SMALL_STATE(1153)] = 29135, + [SMALL_STATE(1154)] = 29171, + [SMALL_STATE(1155)] = 29207, + [SMALL_STATE(1156)] = 29243, + [SMALL_STATE(1157)] = 29279, + [SMALL_STATE(1158)] = 29315, + [SMALL_STATE(1159)] = 29351, + [SMALL_STATE(1160)] = 29387, + [SMALL_STATE(1161)] = 29423, + [SMALL_STATE(1162)] = 29461, + [SMALL_STATE(1163)] = 29497, + [SMALL_STATE(1164)] = 29533, + [SMALL_STATE(1165)] = 29589, + [SMALL_STATE(1166)] = 29645, + [SMALL_STATE(1167)] = 29701, + [SMALL_STATE(1168)] = 29757, + [SMALL_STATE(1169)] = 29811, + [SMALL_STATE(1170)] = 29867, + [SMALL_STATE(1171)] = 29923, + [SMALL_STATE(1172)] = 29973, + [SMALL_STATE(1173)] = 30023, + [SMALL_STATE(1174)] = 30073, + [SMALL_STATE(1175)] = 30123, + [SMALL_STATE(1176)] = 30173, + [SMALL_STATE(1177)] = 30223, + [SMALL_STATE(1178)] = 30270, + [SMALL_STATE(1179)] = 30317, + [SMALL_STATE(1180)] = 30364, + [SMALL_STATE(1181)] = 30411, + [SMALL_STATE(1182)] = 30458, + [SMALL_STATE(1183)] = 30505, + [SMALL_STATE(1184)] = 30552, + [SMALL_STATE(1185)] = 30599, + [SMALL_STATE(1186)] = 30646, + [SMALL_STATE(1187)] = 30693, + [SMALL_STATE(1188)] = 30740, + [SMALL_STATE(1189)] = 30787, + [SMALL_STATE(1190)] = 30819, + [SMALL_STATE(1191)] = 30858, + [SMALL_STATE(1192)] = 30897, + [SMALL_STATE(1193)] = 30933, + [SMALL_STATE(1194)] = 30969, + [SMALL_STATE(1195)] = 30990, + [SMALL_STATE(1196)] = 31010, + [SMALL_STATE(1197)] = 31033, + [SMALL_STATE(1198)] = 31058, + [SMALL_STATE(1199)] = 31083, + [SMALL_STATE(1200)] = 31108, + [SMALL_STATE(1201)] = 31133, + [SMALL_STATE(1202)] = 31158, + [SMALL_STATE(1203)] = 31181, + [SMALL_STATE(1204)] = 31206, + [SMALL_STATE(1205)] = 31224, + [SMALL_STATE(1206)] = 31242, + [SMALL_STATE(1207)] = 31262, + [SMALL_STATE(1208)] = 31280, + [SMALL_STATE(1209)] = 31296, + [SMALL_STATE(1210)] = 31314, + [SMALL_STATE(1211)] = 31330, + [SMALL_STATE(1212)] = 31348, + [SMALL_STATE(1213)] = 31366, + [SMALL_STATE(1214)] = 31384, + [SMALL_STATE(1215)] = 31406, + [SMALL_STATE(1216)] = 31424, + [SMALL_STATE(1217)] = 31446, + [SMALL_STATE(1218)] = 31464, + [SMALL_STATE(1219)] = 31482, + [SMALL_STATE(1220)] = 31500, + [SMALL_STATE(1221)] = 31518, + [SMALL_STATE(1222)] = 31536, + [SMALL_STATE(1223)] = 31550, + [SMALL_STATE(1224)] = 31568, + [SMALL_STATE(1225)] = 31586, + [SMALL_STATE(1226)] = 31600, + [SMALL_STATE(1227)] = 31618, + [SMALL_STATE(1228)] = 31636, + [SMALL_STATE(1229)] = 31658, + [SMALL_STATE(1230)] = 31678, + [SMALL_STATE(1231)] = 31696, + [SMALL_STATE(1232)] = 31718, + [SMALL_STATE(1233)] = 31738, + [SMALL_STATE(1234)] = 31756, + [SMALL_STATE(1235)] = 31776, + [SMALL_STATE(1236)] = 31794, + [SMALL_STATE(1237)] = 31814, + [SMALL_STATE(1238)] = 31836, + [SMALL_STATE(1239)] = 31856, + [SMALL_STATE(1240)] = 31874, + [SMALL_STATE(1241)] = 31894, + [SMALL_STATE(1242)] = 31912, + [SMALL_STATE(1243)] = 31932, + [SMALL_STATE(1244)] = 31950, + [SMALL_STATE(1245)] = 31972, + [SMALL_STATE(1246)] = 31992, + [SMALL_STATE(1247)] = 32014, + [SMALL_STATE(1248)] = 32032, + [SMALL_STATE(1249)] = 32054, + [SMALL_STATE(1250)] = 32074, + [SMALL_STATE(1251)] = 32094, + [SMALL_STATE(1252)] = 32112, + [SMALL_STATE(1253)] = 32130, + [SMALL_STATE(1254)] = 32144, + [SMALL_STATE(1255)] = 32162, + [SMALL_STATE(1256)] = 32182, + [SMALL_STATE(1257)] = 32202, + [SMALL_STATE(1258)] = 32216, + [SMALL_STATE(1259)] = 32236, + [SMALL_STATE(1260)] = 32254, + [SMALL_STATE(1261)] = 32272, + [SMALL_STATE(1262)] = 32292, + [SMALL_STATE(1263)] = 32312, + [SMALL_STATE(1264)] = 32330, + [SMALL_STATE(1265)] = 32352, + [SMALL_STATE(1266)] = 32374, + [SMALL_STATE(1267)] = 32396, + [SMALL_STATE(1268)] = 32418, + [SMALL_STATE(1269)] = 32436, + [SMALL_STATE(1270)] = 32454, + [SMALL_STATE(1271)] = 32474, + [SMALL_STATE(1272)] = 32494, + [SMALL_STATE(1273)] = 32513, + [SMALL_STATE(1274)] = 32530, + [SMALL_STATE(1275)] = 32547, + [SMALL_STATE(1276)] = 32564, + [SMALL_STATE(1277)] = 32581, + [SMALL_STATE(1278)] = 32600, + [SMALL_STATE(1279)] = 32617, + [SMALL_STATE(1280)] = 32630, + [SMALL_STATE(1281)] = 32647, + [SMALL_STATE(1282)] = 32666, + [SMALL_STATE(1283)] = 32683, + [SMALL_STATE(1284)] = 32702, + [SMALL_STATE(1285)] = 32721, + [SMALL_STATE(1286)] = 32738, + [SMALL_STATE(1287)] = 32757, + [SMALL_STATE(1288)] = 32776, + [SMALL_STATE(1289)] = 32793, + [SMALL_STATE(1290)] = 32812, + [SMALL_STATE(1291)] = 32829, + [SMALL_STATE(1292)] = 32848, + [SMALL_STATE(1293)] = 32865, + [SMALL_STATE(1294)] = 32884, + [SMALL_STATE(1295)] = 32903, + [SMALL_STATE(1296)] = 32922, + [SMALL_STATE(1297)] = 32941, + [SMALL_STATE(1298)] = 32960, + [SMALL_STATE(1299)] = 32979, + [SMALL_STATE(1300)] = 32998, + [SMALL_STATE(1301)] = 33015, + [SMALL_STATE(1302)] = 33034, + [SMALL_STATE(1303)] = 33047, + [SMALL_STATE(1304)] = 33066, + [SMALL_STATE(1305)] = 33083, + [SMALL_STATE(1306)] = 33096, + [SMALL_STATE(1307)] = 33115, + [SMALL_STATE(1308)] = 33130, + [SMALL_STATE(1309)] = 33149, + [SMALL_STATE(1310)] = 33168, + [SMALL_STATE(1311)] = 33187, + [SMALL_STATE(1312)] = 33200, + [SMALL_STATE(1313)] = 33219, + [SMALL_STATE(1314)] = 33238, + [SMALL_STATE(1315)] = 33257, + [SMALL_STATE(1316)] = 33272, + [SMALL_STATE(1317)] = 33289, + [SMALL_STATE(1318)] = 33306, + [SMALL_STATE(1319)] = 33323, + [SMALL_STATE(1320)] = 33342, + [SMALL_STATE(1321)] = 33359, + [SMALL_STATE(1322)] = 33372, + [SMALL_STATE(1323)] = 33391, + [SMALL_STATE(1324)] = 33410, + [SMALL_STATE(1325)] = 33423, + [SMALL_STATE(1326)] = 33440, + [SMALL_STATE(1327)] = 33453, + [SMALL_STATE(1328)] = 33468, + [SMALL_STATE(1329)] = 33487, + [SMALL_STATE(1330)] = 33506, + [SMALL_STATE(1331)] = 33519, + [SMALL_STATE(1332)] = 33531, + [SMALL_STATE(1333)] = 33543, + [SMALL_STATE(1334)] = 33555, + [SMALL_STATE(1335)] = 33567, + [SMALL_STATE(1336)] = 33581, + [SMALL_STATE(1337)] = 33593, + [SMALL_STATE(1338)] = 33607, + [SMALL_STATE(1339)] = 33619, + [SMALL_STATE(1340)] = 33633, + [SMALL_STATE(1341)] = 33647, + [SMALL_STATE(1342)] = 33661, + [SMALL_STATE(1343)] = 33675, + [SMALL_STATE(1344)] = 33687, + [SMALL_STATE(1345)] = 33701, + [SMALL_STATE(1346)] = 33713, + [SMALL_STATE(1347)] = 33725, + [SMALL_STATE(1348)] = 33737, + [SMALL_STATE(1349)] = 33753, + [SMALL_STATE(1350)] = 33767, + [SMALL_STATE(1351)] = 33781, + [SMALL_STATE(1352)] = 33797, + [SMALL_STATE(1353)] = 33811, + [SMALL_STATE(1354)] = 33825, + [SMALL_STATE(1355)] = 33837, + [SMALL_STATE(1356)] = 33849, + [SMALL_STATE(1357)] = 33865, + [SMALL_STATE(1358)] = 33879, + [SMALL_STATE(1359)] = 33893, + [SMALL_STATE(1360)] = 33907, + [SMALL_STATE(1361)] = 33921, + [SMALL_STATE(1362)] = 33937, + [SMALL_STATE(1363)] = 33951, + [SMALL_STATE(1364)] = 33965, + [SMALL_STATE(1365)] = 33979, + [SMALL_STATE(1366)] = 33991, + [SMALL_STATE(1367)] = 34007, + [SMALL_STATE(1368)] = 34021, + [SMALL_STATE(1369)] = 34033, + [SMALL_STATE(1370)] = 34047, + [SMALL_STATE(1371)] = 34063, + [SMALL_STATE(1372)] = 34077, + [SMALL_STATE(1373)] = 34089, + [SMALL_STATE(1374)] = 34103, + [SMALL_STATE(1375)] = 34115, + [SMALL_STATE(1376)] = 34131, + [SMALL_STATE(1377)] = 34147, + [SMALL_STATE(1378)] = 34159, + [SMALL_STATE(1379)] = 34171, + [SMALL_STATE(1380)] = 34183, + [SMALL_STATE(1381)] = 34197, + [SMALL_STATE(1382)] = 34213, + [SMALL_STATE(1383)] = 34229, + [SMALL_STATE(1384)] = 34243, + [SMALL_STATE(1385)] = 34257, + [SMALL_STATE(1386)] = 34273, + [SMALL_STATE(1387)] = 34289, + [SMALL_STATE(1388)] = 34301, + [SMALL_STATE(1389)] = 34315, + [SMALL_STATE(1390)] = 34329, + [SMALL_STATE(1391)] = 34341, + [SMALL_STATE(1392)] = 34355, + [SMALL_STATE(1393)] = 34371, + [SMALL_STATE(1394)] = 34387, + [SMALL_STATE(1395)] = 34403, + [SMALL_STATE(1396)] = 34419, + [SMALL_STATE(1397)] = 34433, + [SMALL_STATE(1398)] = 34445, + [SMALL_STATE(1399)] = 34457, + [SMALL_STATE(1400)] = 34473, + [SMALL_STATE(1401)] = 34489, + [SMALL_STATE(1402)] = 34505, + [SMALL_STATE(1403)] = 34521, + [SMALL_STATE(1404)] = 34533, + [SMALL_STATE(1405)] = 34549, + [SMALL_STATE(1406)] = 34563, + [SMALL_STATE(1407)] = 34579, + [SMALL_STATE(1408)] = 34591, + [SMALL_STATE(1409)] = 34607, + [SMALL_STATE(1410)] = 34619, + [SMALL_STATE(1411)] = 34633, + [SMALL_STATE(1412)] = 34647, + [SMALL_STATE(1413)] = 34661, + [SMALL_STATE(1414)] = 34674, + [SMALL_STATE(1415)] = 34687, + [SMALL_STATE(1416)] = 34700, + [SMALL_STATE(1417)] = 34711, + [SMALL_STATE(1418)] = 34724, + [SMALL_STATE(1419)] = 34737, + [SMALL_STATE(1420)] = 34750, + [SMALL_STATE(1421)] = 34763, + [SMALL_STATE(1422)] = 34776, + [SMALL_STATE(1423)] = 34789, + [SMALL_STATE(1424)] = 34802, + [SMALL_STATE(1425)] = 34815, + [SMALL_STATE(1426)] = 34828, + [SMALL_STATE(1427)] = 34841, + [SMALL_STATE(1428)] = 34854, + [SMALL_STATE(1429)] = 34867, + [SMALL_STATE(1430)] = 34880, + [SMALL_STATE(1431)] = 34893, + [SMALL_STATE(1432)] = 34904, + [SMALL_STATE(1433)] = 34917, + [SMALL_STATE(1434)] = 34930, + [SMALL_STATE(1435)] = 34943, + [SMALL_STATE(1436)] = 34956, + [SMALL_STATE(1437)] = 34969, + [SMALL_STATE(1438)] = 34982, + [SMALL_STATE(1439)] = 34995, + [SMALL_STATE(1440)] = 35008, + [SMALL_STATE(1441)] = 35021, + [SMALL_STATE(1442)] = 35034, + [SMALL_STATE(1443)] = 35047, + [SMALL_STATE(1444)] = 35058, + [SMALL_STATE(1445)] = 35071, + [SMALL_STATE(1446)] = 35084, + [SMALL_STATE(1447)] = 35097, + [SMALL_STATE(1448)] = 35108, + [SMALL_STATE(1449)] = 35121, + [SMALL_STATE(1450)] = 35134, + [SMALL_STATE(1451)] = 35147, + [SMALL_STATE(1452)] = 35160, + [SMALL_STATE(1453)] = 35173, + [SMALL_STATE(1454)] = 35186, + [SMALL_STATE(1455)] = 35199, + [SMALL_STATE(1456)] = 35212, + [SMALL_STATE(1457)] = 35225, + [SMALL_STATE(1458)] = 35238, + [SMALL_STATE(1459)] = 35251, + [SMALL_STATE(1460)] = 35264, + [SMALL_STATE(1461)] = 35277, + [SMALL_STATE(1462)] = 35290, + [SMALL_STATE(1463)] = 35303, + [SMALL_STATE(1464)] = 35314, + [SMALL_STATE(1465)] = 35327, + [SMALL_STATE(1466)] = 35340, + [SMALL_STATE(1467)] = 35353, + [SMALL_STATE(1468)] = 35366, + [SMALL_STATE(1469)] = 35379, + [SMALL_STATE(1470)] = 35392, + [SMALL_STATE(1471)] = 35405, + [SMALL_STATE(1472)] = 35418, + [SMALL_STATE(1473)] = 35431, + [SMALL_STATE(1474)] = 35444, + [SMALL_STATE(1475)] = 35457, + [SMALL_STATE(1476)] = 35470, + [SMALL_STATE(1477)] = 35481, + [SMALL_STATE(1478)] = 35494, + [SMALL_STATE(1479)] = 35507, + [SMALL_STATE(1480)] = 35520, + [SMALL_STATE(1481)] = 35533, + [SMALL_STATE(1482)] = 35544, + [SMALL_STATE(1483)] = 35557, + [SMALL_STATE(1484)] = 35570, + [SMALL_STATE(1485)] = 35583, + [SMALL_STATE(1486)] = 35594, + [SMALL_STATE(1487)] = 35607, + [SMALL_STATE(1488)] = 35620, + [SMALL_STATE(1489)] = 35631, + [SMALL_STATE(1490)] = 35644, + [SMALL_STATE(1491)] = 35657, + [SMALL_STATE(1492)] = 35670, + [SMALL_STATE(1493)] = 35681, + [SMALL_STATE(1494)] = 35694, + [SMALL_STATE(1495)] = 35707, + [SMALL_STATE(1496)] = 35720, + [SMALL_STATE(1497)] = 35733, + [SMALL_STATE(1498)] = 35744, + [SMALL_STATE(1499)] = 35755, + [SMALL_STATE(1500)] = 35766, + [SMALL_STATE(1501)] = 35779, + [SMALL_STATE(1502)] = 35792, + [SMALL_STATE(1503)] = 35805, + [SMALL_STATE(1504)] = 35818, + [SMALL_STATE(1505)] = 35829, + [SMALL_STATE(1506)] = 35842, + [SMALL_STATE(1507)] = 35855, + [SMALL_STATE(1508)] = 35868, + [SMALL_STATE(1509)] = 35879, + [SMALL_STATE(1510)] = 35890, + [SMALL_STATE(1511)] = 35901, + [SMALL_STATE(1512)] = 35914, + [SMALL_STATE(1513)] = 35927, + [SMALL_STATE(1514)] = 35938, + [SMALL_STATE(1515)] = 35951, + [SMALL_STATE(1516)] = 35962, + [SMALL_STATE(1517)] = 35975, + [SMALL_STATE(1518)] = 35988, + [SMALL_STATE(1519)] = 35999, + [SMALL_STATE(1520)] = 36012, + [SMALL_STATE(1521)] = 36025, + [SMALL_STATE(1522)] = 36038, + [SMALL_STATE(1523)] = 36051, + [SMALL_STATE(1524)] = 36064, + [SMALL_STATE(1525)] = 36075, + [SMALL_STATE(1526)] = 36088, + [SMALL_STATE(1527)] = 36101, + [SMALL_STATE(1528)] = 36114, + [SMALL_STATE(1529)] = 36127, + [SMALL_STATE(1530)] = 36140, + [SMALL_STATE(1531)] = 36153, + [SMALL_STATE(1532)] = 36166, + [SMALL_STATE(1533)] = 36179, + [SMALL_STATE(1534)] = 36192, + [SMALL_STATE(1535)] = 36203, + [SMALL_STATE(1536)] = 36216, + [SMALL_STATE(1537)] = 36229, + [SMALL_STATE(1538)] = 36242, + [SMALL_STATE(1539)] = 36255, + [SMALL_STATE(1540)] = 36268, + [SMALL_STATE(1541)] = 36281, + [SMALL_STATE(1542)] = 36294, + [SMALL_STATE(1543)] = 36307, + [SMALL_STATE(1544)] = 36320, + [SMALL_STATE(1545)] = 36333, + [SMALL_STATE(1546)] = 36346, + [SMALL_STATE(1547)] = 36359, + [SMALL_STATE(1548)] = 36372, + [SMALL_STATE(1549)] = 36385, + [SMALL_STATE(1550)] = 36398, + [SMALL_STATE(1551)] = 36411, + [SMALL_STATE(1552)] = 36424, + [SMALL_STATE(1553)] = 36437, + [SMALL_STATE(1554)] = 36450, + [SMALL_STATE(1555)] = 36463, + [SMALL_STATE(1556)] = 36476, + [SMALL_STATE(1557)] = 36489, + [SMALL_STATE(1558)] = 36502, + [SMALL_STATE(1559)] = 36515, + [SMALL_STATE(1560)] = 36528, + [SMALL_STATE(1561)] = 36541, + [SMALL_STATE(1562)] = 36554, + [SMALL_STATE(1563)] = 36567, + [SMALL_STATE(1564)] = 36580, + [SMALL_STATE(1565)] = 36593, + [SMALL_STATE(1566)] = 36606, + [SMALL_STATE(1567)] = 36619, + [SMALL_STATE(1568)] = 36632, + [SMALL_STATE(1569)] = 36642, + [SMALL_STATE(1570)] = 36652, + [SMALL_STATE(1571)] = 36662, + [SMALL_STATE(1572)] = 36672, + [SMALL_STATE(1573)] = 36682, + [SMALL_STATE(1574)] = 36692, + [SMALL_STATE(1575)] = 36702, + [SMALL_STATE(1576)] = 36712, + [SMALL_STATE(1577)] = 36722, + [SMALL_STATE(1578)] = 36732, + [SMALL_STATE(1579)] = 36742, + [SMALL_STATE(1580)] = 36752, + [SMALL_STATE(1581)] = 36762, + [SMALL_STATE(1582)] = 36772, + [SMALL_STATE(1583)] = 36782, + [SMALL_STATE(1584)] = 36792, + [SMALL_STATE(1585)] = 36802, + [SMALL_STATE(1586)] = 36812, + [SMALL_STATE(1587)] = 36822, + [SMALL_STATE(1588)] = 36832, + [SMALL_STATE(1589)] = 36842, + [SMALL_STATE(1590)] = 36852, + [SMALL_STATE(1591)] = 36862, + [SMALL_STATE(1592)] = 36872, + [SMALL_STATE(1593)] = 36882, + [SMALL_STATE(1594)] = 36892, + [SMALL_STATE(1595)] = 36902, + [SMALL_STATE(1596)] = 36912, + [SMALL_STATE(1597)] = 36922, + [SMALL_STATE(1598)] = 36932, + [SMALL_STATE(1599)] = 36942, + [SMALL_STATE(1600)] = 36952, + [SMALL_STATE(1601)] = 36962, + [SMALL_STATE(1602)] = 36972, + [SMALL_STATE(1603)] = 36982, + [SMALL_STATE(1604)] = 36992, + [SMALL_STATE(1605)] = 37002, + [SMALL_STATE(1606)] = 37012, + [SMALL_STATE(1607)] = 37022, + [SMALL_STATE(1608)] = 37032, + [SMALL_STATE(1609)] = 37042, + [SMALL_STATE(1610)] = 37052, + [SMALL_STATE(1611)] = 37062, + [SMALL_STATE(1612)] = 37072, + [SMALL_STATE(1613)] = 37082, + [SMALL_STATE(1614)] = 37092, + [SMALL_STATE(1615)] = 37102, + [SMALL_STATE(1616)] = 37112, + [SMALL_STATE(1617)] = 37122, + [SMALL_STATE(1618)] = 37132, + [SMALL_STATE(1619)] = 37142, + [SMALL_STATE(1620)] = 37152, + [SMALL_STATE(1621)] = 37162, + [SMALL_STATE(1622)] = 37172, + [SMALL_STATE(1623)] = 37182, + [SMALL_STATE(1624)] = 37192, + [SMALL_STATE(1625)] = 37202, + [SMALL_STATE(1626)] = 37212, + [SMALL_STATE(1627)] = 37222, + [SMALL_STATE(1628)] = 37232, + [SMALL_STATE(1629)] = 37242, + [SMALL_STATE(1630)] = 37252, + [SMALL_STATE(1631)] = 37262, + [SMALL_STATE(1632)] = 37272, + [SMALL_STATE(1633)] = 37282, + [SMALL_STATE(1634)] = 37292, + [SMALL_STATE(1635)] = 37302, + [SMALL_STATE(1636)] = 37312, + [SMALL_STATE(1637)] = 37322, + [SMALL_STATE(1638)] = 37332, + [SMALL_STATE(1639)] = 37342, + [SMALL_STATE(1640)] = 37352, + [SMALL_STATE(1641)] = 37362, + [SMALL_STATE(1642)] = 37372, + [SMALL_STATE(1643)] = 37382, + [SMALL_STATE(1644)] = 37392, + [SMALL_STATE(1645)] = 37402, + [SMALL_STATE(1646)] = 37412, + [SMALL_STATE(1647)] = 37422, + [SMALL_STATE(1648)] = 37432, + [SMALL_STATE(1649)] = 37442, + [SMALL_STATE(1650)] = 37452, + [SMALL_STATE(1651)] = 37462, + [SMALL_STATE(1652)] = 37472, + [SMALL_STATE(1653)] = 37482, + [SMALL_STATE(1654)] = 37492, + [SMALL_STATE(1655)] = 37502, + [SMALL_STATE(1656)] = 37512, + [SMALL_STATE(1657)] = 37522, + [SMALL_STATE(1658)] = 37532, + [SMALL_STATE(1659)] = 37542, + [SMALL_STATE(1660)] = 37552, + [SMALL_STATE(1661)] = 37562, + [SMALL_STATE(1662)] = 37572, + [SMALL_STATE(1663)] = 37582, + [SMALL_STATE(1664)] = 37592, + [SMALL_STATE(1665)] = 37602, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_manifest, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_manifest, 1, 0, 0), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3, 0, 10), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3, 0, 10), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_manifest, 1, 0, 0), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, 0, 10), [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, 0, 10), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_comma, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 2), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 2), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3, 0, 10), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3, 0, 10), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_comma, 2, 0, 0), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_with_lambda, 1, 0, 0), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_with_lambda, 1, 0, 0), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 2), [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 2), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_with_lambda, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_with_lambda, 1, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary, 3, 0, 14), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary, 3, 0, 14), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary, 2, 0, 3), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary, 2, 0, 3), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 2), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 2), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, 0, 0), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, 0, 0), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 3, 0, 10), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 10), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary, 3, 0, 14), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary, 3, 0, 14), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 1, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 1, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 3, 0, 10), [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 3, 0, 10), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource, 1, 0, 2), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__resource, 1, 0, 2), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 1, 0, 0), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 1, 0, 0), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 3, 0, 10), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 10), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_access, 3, 0, 15), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_access, 3, 0, 15), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, 0, 0), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, 0, 0), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 3, 0, 0), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 3, 0, 0), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 3, 0, 16), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 3, 0, 16), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 1, 0, 0), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 1, 0, 0), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_expression, 5, 0, 19), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_expression, 5, 0, 19), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 2), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 2), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collect_query, 3, 0, 8), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collect_query, 3, 0, 8), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_expression, 4, 0, 19), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_expression, 4, 0, 19), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 8), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 8), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_definition, 3, 0, 0), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_definition, 3, 0, 0), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, 0, 0), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, 0, 0), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plan_definition, 3, 0, 0), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plan_definition, 3, 0, 0), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 0), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 0), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 4, 0, 0), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 4, 0, 0), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 0), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 0), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plan_definition, 4, 0, 0), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plan_definition, 4, 0, 0), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_definition, 4, 0, 0), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_definition, 4, 0, 0), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 0), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 10), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 10), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reserved_word, 1, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reserved_word, 1, 0, 0), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 3, 0, 0), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 3, 0, 0), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default, 1, 0, 0), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default, 1, 0, 0), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 1, 0, 0), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 1, 0, 0), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 0), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 0), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, 0, 0), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, 0, 0), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 2, 0, 0), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 2, 0, 0), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 4, 0, 2), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 4, 0, 2), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 0), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 0), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__boolean, 1, 0, 0), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__boolean, 1, 0, 0), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 16), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 16), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 9), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 9), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2, 0, 0), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 10), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 10), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quotedtext, 1, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quotedtext, 1, 0, 0), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collect_query, 2, 0, 0), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collect_query, 2, 0, 0), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 2, 0, 0), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 2, 0, 0), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 8), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 8), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_apply_expression, 5, 0, 0), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_apply_expression, 5, 0, 0), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 0), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 0), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 5, 0, 0), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 5, 0, 0), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, 0, 0), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 2, 0, 0), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 7, 0, 27), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 7, 0, 27), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 27), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 27), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 6, 0, 24), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 6, 0, 24), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 5, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 5, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 6, 0, 0), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 6, 0, 0), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 0), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 5, 0, 24), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 5, 0, 24), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 5, 0, 2), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 5, 0, 2), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, 0, 2), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, 0, 2), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 4, 0, 0), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 4, 0, 0), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, 0, 0), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, 0, 0), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary, 2, 0, 3), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary, 2, 0, 3), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource, 1, 0, 2), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__resource, 1, 0, 2), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 1, 0, 0), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 1, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 3, 0, 0), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 3, 0, 0), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, 0, 0), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, 0, 0), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 3, 0, 16), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 3, 0, 16), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_access, 3, 0, 15), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_access, 3, 0, 15), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 27), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 27), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_definition, 4, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_definition, 4, 0, 0), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 10), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 10), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 3, 0, 8), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 3, 0, 8), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 9), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 9), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quotedtext, 1, 0, 0), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quotedtext, 1, 0, 0), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 0), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 0), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_definition, 3, 0, 0), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_definition, 3, 0, 0), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 5, 0, 0), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 5, 0, 0), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plan_definition, 3, 0, 0), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plan_definition, 3, 0, 0), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 0), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 0), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_apply_expression, 5, 0, 0), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_apply_expression, 5, 0, 0), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 8), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 8), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 0), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 0), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 10), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 10), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 3, 0, 0), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 3, 0, 0), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 2), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 2), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 0), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 0), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 2, 0, 0), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 2, 0, 0), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2, 0, 0), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, 0, 0), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, 0, 0), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_with_lambda, 2, 0, 0), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_with_lambda, 2, 0, 0), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 2, 0, 0), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 2, 0, 0), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 0), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 0), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 2, 0, 2), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 2, 0, 2), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 16), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 16), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, 0, 5), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, 0, 5), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, 0, 0), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, 0, 0), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 4, 0, 0), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 4, 0, 0), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 0), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 0), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 4, 0, 0), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 4, 0, 0), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collect_query, 2, 0, 0), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collect_query, 2, 0, 0), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 4, 0, 2), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 4, 0, 2), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collect_query, 3, 0, 8), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collect_query, 3, 0, 8), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, 0, 0), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 2, 0, 0), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_expression, 4, 0, 19), + [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_expression, 4, 0, 19), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, 0, 2), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, 0, 2), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bracketed_expression, 5, 0, 19), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bracketed_expression, 5, 0, 19), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reserved_word, 1, 0, 0), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reserved_word, 1, 0, 0), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 0), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 0), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 5, 0, 2), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 5, 0, 2), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plan_definition, 4, 0, 0), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plan_definition, 4, 0, 0), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 5, 0, 24), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 5, 0, 24), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, 0, 0), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__boolean, 1, 0, 0), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__boolean, 1, 0, 0), [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, 0, 0), [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, 0, 0), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 0), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 0), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 0), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 0), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2, 0, 5), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2, 0, 5), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_with_lambda, 2, 0, 0), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_with_lambda, 2, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 2, 0, 2), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 2, 0, 2), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_args, 1, 0, 7), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_function_args, 1, 0, 7), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relationship, 1, 0, 2), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relationship, 1, 0, 2), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 0), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 0), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 6, 0, 8), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 2), REDUCE(sym_resource_type, 6, 0, 8), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 6, 0, 8), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 6, 0, 0), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 0), REDUCE(sym_resource_type, 6, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 6, 0, 0), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 5, 0, 18), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 5, 0, 18), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 0), REDUCE(sym_resource_type, 5, 0, 0), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 8), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 2), REDUCE(sym_resource_type, 5, 0, 8), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 8), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relationship, 3, 0, 13), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relationship, 3, 0, 13), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 4, 0, 0), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 3, 0, 2), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 3, 0, 2), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 4, 0, 2), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 4, 0, 2), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 2), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 2), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 2), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 4, 0, 2), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 4, 0, 18), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 4, 0, 18), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource, 1, 0, 0), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__resource, 1, 0, 0), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 1, 0, 2), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 1, 0, 2), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, 0, 12), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, 0, 12), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_args, 3, 0, 7), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_function_args, 3, 0, 7), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 2), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 2), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 2, 0, 6), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 2, 0, 6), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 4, 0, 0), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 4, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 3, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 3, 0, 0), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3, 0, 11), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3, 0, 11), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_node_definition, 6, 0, 0), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_node_definition, 6, 0, 0), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector, 5, 0, 0), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector, 5, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undef, 1, 0, 0), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undef, 1, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default, 1, 0, 0), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default, 1, 0, 0), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_collector, 6, 0, 24), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_collector, 6, 0, 24), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 7, 0, 27), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 7, 0, 27), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_args, 1, 0, 7), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_function_args, 1, 0, 7), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 2), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 4, 0, 2), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource, 1, 0, 0), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__resource, 1, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relationship, 1, 0, 2), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relationship, 1, 0, 2), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 5, 0, 18), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 5, 0, 18), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 2), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 2), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relationship, 3, 0, 13), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relationship, 3, 0, 13), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 3, 0, 2), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 3, 0, 2), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 6, 0, 8), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 2), REDUCE(sym_resource_type, 6, 0, 8), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 6, 0, 8), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 0), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 4, 0, 2), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 4, 0, 2), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 0), REDUCE(sym_resource_type, 5, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 8), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 2), REDUCE(sym_resource_type, 5, 0, 8), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 5, 0, 8), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 6, 0, 0), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_resource_type, 5, 0, 0), REDUCE(sym_resource_type, 6, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 6, 0, 0), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_type, 4, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_type, 4, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_reference, 4, 0, 18), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_resource_reference, 4, 0, 18), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 1, 0, 2), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 1, 0, 2), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, 0, 12), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, 0, 12), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_function_args, 3, 0, 7), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_function_args, 3, 0, 7), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 2), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 2), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 3, 0, 0), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 3, 0, 0), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 4, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 4, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function, 2, 0, 6), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function, 2, 0, 6), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 3, 0, 11), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 3, 0, 11), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_element, 1, 0, 2), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chaining_arrow, 1, 0, 0), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chaining_arrow, 1, 0, 0), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_options, 2, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_options, 2, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_options, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_options, 1, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_option, 3, 0, 2), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_option, 3, 0, 2), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function_keywords, 1, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function_keywords, 1, 0, 0), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1, 0, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 22), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 2, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_element, 1, 0, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chaining_arrow, 1, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chaining_arrow, 1, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_options, 1, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_options, 1, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_option, 3, 0, 2), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_option, 3, 0, 2), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_options, 2, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_options, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_function_keywords, 1, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_function_keywords, 1, 0, 0), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 2, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1, 0, 2), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 22), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regular_parameter, 3, 0, 25), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 8), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_option, 3, 0, 26), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regular_parameter, 3, 0, 25), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_option, 3, 0, 26), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 8), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_title, 1, 0, 2), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 4, 0, 23), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_entry_keyword, 1, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_type, 1, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 2, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1299), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 2, 0, 8), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 1, 0, 2), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2, 0, 0), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class, 1, 0, 1), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classname, 1, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 3, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 2), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_or_number, 1, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hashpair, 3, 0, 17), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 1, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 1, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operations, 3, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regular_parameter, 1, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operations, 1, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_parameter, 2, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__untyped_parameter, 1, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 3, 0, 23), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hostnames, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 20), SHIFT_REPEAT(494), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 20), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_type, 4, 0, 21), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hostnames, 3, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 2, 0, 20), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_comma, 1, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 4, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arguments, 1, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hashpairs, 3, 0, 0), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hashpairs, 1, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 2, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entries, 1, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_elements, 3, 0, 0), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 2, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 3, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 3, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arguments, 3, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_element, 1, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_elements, 1, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource_bodies, 3, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entries, 3, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_option_list, 1, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource_bodies, 1, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_option_list, 3, 0, 0), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 5, 0, 28), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias_lhs, 2, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2361] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_title, 1, 0, 2), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 4, 0, 23), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_entry_keyword, 1, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 2, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1324), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_type, 1, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 2, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 2, 0, 8), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 1, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hash_entry, 1, 0, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class, 1, 0, 1), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_repeat1, 1, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hashpair, 3, 0, 17), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 3, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 2), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_classname, 1, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 1, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_or_number, 1, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__untyped_parameter, 1, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hostnames, 1, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regular_parameter, 1, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operations, 3, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 4), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 20), SHIFT_REPEAT(544), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expressions_repeat1, 2, 0, 20), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operations, 1, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 3, 0, 23), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_type, 4, 0, 21), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 2, 0, 20), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_parameter, 2, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hostnames, 3, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_option_list, 1, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 3, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource_bodies, 1, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arguments, 3, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_body, 3, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entries, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__resource_bodies, 3, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_comma, 1, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arguments, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hashpairs, 3, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_elements, 3, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 4, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_option_list, 3, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hashpairs, 1, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entries, 1, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_elements, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_element, 1, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1, 0, 0), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameter_list, 2, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 2, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias_lhs, 2, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2441] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_type, 5, 0, 28), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { ts_external_token_qmark = 0, ts_external_token_selbrace = 1, - ts_external_token__fixed_string = 2, - ts_external_token__expandable_string = 3, + ts_external_token__sq_string = 2, + ts_external_token__dq_string = 3, ts_external_token__heredoc_start = 4, ts_external_token__heredoc_body = 5, ts_external_token__heredoc_end = 6, @@ -83254,8 +84300,8 @@ enum ts_external_scanner_symbol_identifiers { static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_qmark] = sym_qmark, [ts_external_token_selbrace] = sym_selbrace, - [ts_external_token__fixed_string] = sym__fixed_string, - [ts_external_token__expandable_string] = sym__expandable_string, + [ts_external_token__sq_string] = sym__sq_string, + [ts_external_token__dq_string] = sym__dq_string, [ts_external_token__heredoc_start] = sym__heredoc_start, [ts_external_token__heredoc_body] = sym__heredoc_body, [ts_external_token__heredoc_end] = sym__heredoc_end, @@ -83267,8 +84313,8 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_qmark] = true, [ts_external_token_selbrace] = true, - [ts_external_token__fixed_string] = true, - [ts_external_token__expandable_string] = true, + [ts_external_token__sq_string] = true, + [ts_external_token__dq_string] = true, [ts_external_token__heredoc_start] = true, [ts_external_token__heredoc_body] = true, [ts_external_token__heredoc_end] = true, @@ -83285,18 +84331,18 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_escape_sequence] = true, }, [4] = { - [ts_external_token__expandable_string] = true, + [ts_external_token__dq_string] = true, [ts_external_token_interpolation] = true, [ts_external_token_escape_sequence] = true, }, [5] = { - [ts_external_token__fixed_string] = true, + [ts_external_token__sq_string] = true, }, [6] = { - [ts_external_token__heredoc_start] = true, + [ts_external_token_selbrace] = true, }, [7] = { - [ts_external_token_selbrace] = true, + [ts_external_token__heredoc_start] = true, }, }; diff --git a/src/scanner.c b/src/scanner.c index 8ab9564..5eeb943 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -45,8 +45,8 @@ enum TokenType { QMARK, SELBRACE, - FIXED_STRING, - EXPANDABLE_STRING, + SQ_STRING, + DQ_STRING, HEREDOC_START, HEREDOC_BODY, HEREDOC_END, @@ -122,9 +122,9 @@ static bool scan_selbrace(TSLexer *lexer, ScannerState *state) { /** - * Scan for content of fixed and expandable strings. The function uses the - * lookahead value as the start token and scans until the same token is found - * again. + * Scan for content of single and double quoted strings. The function uses + * the lookahead value as the start token and scans until the same token is + * found again. */ static bool skip_quoted_string(TSLexer *lexer) { @@ -253,8 +253,8 @@ static bool scan_escape_sequence(TSLexer *lexer) { * type of string. */ -static bool scan_fixed_string(TSLexer *lexer) { - lexer->result_symbol = FIXED_STRING; +static bool scan_sq_string(TSLexer *lexer) { + lexer->result_symbol = SQ_STRING; for(bool has_content=false;; has_content=true) { // We are done if the end of file is reached @@ -278,8 +278,8 @@ static bool scan_fixed_string(TSLexer *lexer) { * content ends and the function scan_interpolation will continue. */ -static bool scan_expandable_string(TSLexer *lexer) { - lexer->result_symbol = EXPANDABLE_STRING; +static bool scan_dq_string(TSLexer *lexer) { + lexer->result_symbol = DQ_STRING; for(bool has_content=false;; has_content=true) { // We are done if the end of file is reached @@ -532,12 +532,12 @@ bool tree_sitter_puppet_external_scanner_scan(void *payload, TSLexer *lexer, con return true; } - if (valid_symbols[EXPANDABLE_STRING]) { - return scan_expandable_string(lexer); + if (valid_symbols[DQ_STRING]) { + return scan_dq_string(lexer); } - if (valid_symbols[FIXED_STRING]) { - return scan_fixed_string(lexer); + if (valid_symbols[SQ_STRING]) { + return scan_sq_string(lexer); } if (valid_symbols[HEREDOC_START]) { diff --git a/test/corpus/assignments.txt b/test/corpus/assignments.txt index fee0569..27a6c9d 100644 --- a/test/corpus/assignments.txt +++ b/test/corpus/assignments.txt @@ -69,7 +69,7 @@ $foo = Test['asdf'] (type) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ assignment absolute scope diff --git a/test/corpus/chaining-arrows.txt b/test/corpus/chaining-arrows.txt index 000b7b3..d230320 100644 --- a/test/corpus/chaining-arrows.txt +++ b/test/corpus/chaining-arrows.txt @@ -9,13 +9,13 @@ class{'before':} -> class{'after':} (name) (resource_body (resource_title - (string)))) + (single_quoted_string)))) (chaining_arrow) (resource_type (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ chaining arrows resource and reference @@ -28,12 +28,12 @@ class{'before':} -> Class['after'] (name) (resource_body (resource_title - (string)))) + (single_quoted_string)))) (chaining_arrow) (type) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ chaining arrows three resources @@ -45,17 +45,17 @@ Package['ntp'] -> File['/etc/ntp.conf'] ~> Service['ntpd'] (type) (access (access_element - (string))) + (single_quoted_string))) (chaining_arrow) (type) (access (access_element - (string))) + (single_quoted_string))) (chaining_arrow) (type) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ chaining arrows with collector @@ -67,7 +67,7 @@ Package['ntp'] -> Ntp::Node <||> (type) (access (access_element - (string))) + (single_quoted_string))) (chaining_arrow) (resource_collector (type) diff --git a/test/corpus/class-in-class.txt b/test/corpus/class-in-class.txt index 6c75bc5..f730954 100644 --- a/test/corpus/class-in-class.txt +++ b/test/corpus/class-in-class.txt @@ -18,7 +18,7 @@ class bar { (name) (resource_body (resource_title - (string))))) + (single_quoted_string))))) (comment) (statement (class_definition diff --git a/test/corpus/class-parameters.txt b/test/corpus/class-parameters.txt index 453dd0c..7a29006 100644 --- a/test/corpus/class-parameters.txt +++ b/test/corpus/class-parameters.txt @@ -65,11 +65,11 @@ class foo( (type) (access (access_element - (string)) + (single_quoted_string)) (access_element - (string)) + (single_quoted_string)) (access_element - (string))))) + (single_quoted_string))))) (regular_parameter (variable (name)) diff --git a/test/corpus/class.txt b/test/corpus/class.txt index f826267..50dbf7c 100644 --- a/test/corpus/class.txt +++ b/test/corpus/class.txt @@ -37,7 +37,7 @@ class foo::config { (attribute (name) (arrow) - (string)) + (single_quoted_string)) (attribute (name) (arrow) @@ -67,7 +67,7 @@ class foo::config { (name) (argument_list (argument - (string))))))))) + (single_quoted_string))))))))) (statement (resource_type (name) @@ -83,7 +83,7 @@ class foo::config { (attribute (name) (arrow) - (string)) + (single_quoted_string)) (attribute (name) (arrow) diff --git a/test/corpus/comments.txt b/test/corpus/comments.txt index 00b7e0f..1d55b13 100644 --- a/test/corpus/comments.txt +++ b/test/corpus/comments.txt @@ -20,5 +20,5 @@ $foo = '#' (statement (variable (name)) - (string)) + (single_quoted_string)) (comment)) diff --git a/test/corpus/conditionals.txt b/test/corpus/conditionals.txt index b68f3aa..1bdb305 100644 --- a/test/corpus/conditionals.txt +++ b/test/corpus/conditionals.txt @@ -123,7 +123,7 @@ $result = if $os == 'RedHat' { (binary (variable (name)) - (string))) + (single_quoted_string))) (block (statement (number))) @@ -153,8 +153,8 @@ case $os { (variable (name)) (case_option - (string) - (string) + (single_quoted_string) + (single_quoted_string) (block (statement (statement_function @@ -218,8 +218,8 @@ $result = case $os { (variable (name)) (case_option - (string) - (string) + (single_quoted_string) + (single_quoted_string) (block (statement (number)))) diff --git a/test/corpus/data-structures.txt b/test/corpus/data-structures.txt index bd17796..fb11437 100644 --- a/test/corpus/data-structures.txt +++ b/test/corpus/data-structures.txt @@ -11,13 +11,13 @@ $hash = { 1 => 'asdf', 2 => 'foo', 'b' => 123 } (hashpair (number) (arrow) - (string)) + (single_quoted_string)) (hashpair (number) (arrow) - (string)) + (single_quoted_string)) (hashpair - (string) + (single_quoted_string) (arrow) (number))))) @@ -30,9 +30,9 @@ data structures array (statement (array (array_element - (string)) + (single_quoted_string)) (array_element - (string))))) + (single_quoted_string))))) ================================================================================ data structures hash of array @@ -60,11 +60,11 @@ $hash_of_arrays = { (array_element (number)))) (hashpair - (string) + (single_quoted_string) (arrow) (hash (hashpair - (string) + (single_quoted_string) (arrow) (number))))))) @@ -97,21 +97,21 @@ $struct = [ (arrow) (array (array_element - (string)) + (single_quoted_string)) (array_element - (string)) + (single_quoted_string)) (array_element - (string)))))) + (single_quoted_string)))))) (array_element (hash (hashpair - (string) + (single_quoted_string) (arrow) (hash (hashpair - (string) + (single_quoted_string) (arrow) - (string))))))))) + (single_quoted_string))))))))) ================================================================================ data structures empty array diff --git a/test/corpus/data-types.txt b/test/corpus/data-types.txt index a2b36c2..5970557 100644 --- a/test/corpus/data-types.txt +++ b/test/corpus/data-types.txt @@ -49,9 +49,9 @@ type Foo = Struct[{mode => Enum['read', 'write'], (type) (access (access_element - (string)) + (single_quoted_string)) (access_element - (string)))) + (single_quoted_string)))) (hashpair (name) (arrow) diff --git a/test/corpus/element-reference.txt b/test/corpus/element-reference.txt index 4d21ebc..2ffcdaf 100644 --- a/test/corpus/element-reference.txt +++ b/test/corpus/element-reference.txt @@ -22,7 +22,7 @@ $hash['foo'] (name)) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ element reference array of arrays @@ -51,13 +51,13 @@ $facts['os']['release']['major'] (name)) (access (access_element - (string))) + (single_quoted_string))) (access (access_element - (string))) + (single_quoted_string))) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ element reference array slice @@ -89,10 +89,10 @@ $target.facts['logical_volumes']['size'] (name)))) (access (access_element - (string))) + (single_quoted_string))) (access (access_element - (string))))) + (single_quoted_string))))) ================================================================================ element reference bare words @@ -109,11 +109,11 @@ notice( $myhash[key] ) (hashpair key: (name) (arrow) - value: (string)) + value: (double_quoted_string)) (hashpair key: (name) (arrow) - value: (string)))) + value: (double_quoted_string)))) (statement (statement_function (name) @@ -140,7 +140,7 @@ notice( $myhash['foo'][bar][$baz][1] ) (name)) (access (access_element - (string))) + (single_quoted_string))) (access (access_element (name))) diff --git a/test/corpus/expressions-binary.txt b/test/corpus/expressions-binary.txt index 3578f26..19d743a 100644 --- a/test/corpus/expressions-binary.txt +++ b/test/corpus/expressions-binary.txt @@ -18,5 +18,5 @@ true or false (number))) (statement (binary - (string) - (string)))) + (single_quoted_string) + (single_quoted_string)))) diff --git a/test/corpus/expressions-boolean.txt b/test/corpus/expressions-boolean.txt index 02d033a..ce2c829 100644 --- a/test/corpus/expressions-boolean.txt +++ b/test/corpus/expressions-boolean.txt @@ -17,8 +17,8 @@ expression boolean equals (manifest (statement (binary - (string) - (string)))) + (single_quoted_string) + (single_quoted_string)))) ================================================================================ expression boolean match @@ -28,7 +28,7 @@ expression boolean match (manifest (statement (binary - (string) + (single_quoted_string) (regex)))) ================================================================================ @@ -39,12 +39,12 @@ expression boolean in (manifest (statement (binary - (string) + (single_quoted_string) (array (array_element - (string)) + (single_quoted_string)) (array_element - (string)))))) + (single_quoted_string)))))) ================================================================================ expression boolean numeric diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 6aa3391..d841171 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -35,7 +35,7 @@ stdlib::ensure($ensure, 'file') (variable (name))) (argument - (string)))))) + (single_quoted_string)))))) ================================================================================ function call with trailing comma in argument list @@ -63,7 +63,7 @@ run_task('_catch_errors' => true) (argument_list (argument (hashpair - (string) + (single_quoted_string) (arrow) (true))))))) @@ -82,7 +82,7 @@ $foo.join('_') (name)) (argument_list (argument - (string))))))) + (single_quoted_string))))))) ================================================================================ function call with lambda @@ -116,7 +116,7 @@ warning("Module foo not tested against ${operatingsystem}") (name) (argument_list (argument - (string + (double_quoted_string (interpolation))))))) ================================================================================ @@ -130,7 +130,7 @@ lookup('val', String, undef, []) (name) (argument_list (argument - (string)) + (single_quoted_string)) (argument (type)) (argument @@ -155,9 +155,9 @@ lookup('classes').join('_').include (name) (argument_list (argument - (string)))) + (single_quoted_string)))) (name)) (argument_list (argument - (string))))) + (single_quoted_string))))) (name)))))) diff --git a/test/corpus/literal.txt b/test/corpus/literal.txt index a8ceb24..dd0a2ca 100644 --- a/test/corpus/literal.txt +++ b/test/corpus/literal.txt @@ -16,27 +16,27 @@ $units = { (name)) (hash (hashpair - (string) + (single_quoted_string) (arrow) (number)) (hashpair - (string) + (single_quoted_string) (arrow) (number)) (hashpair - (string) + (single_quoted_string) (arrow) (number)) (hashpair - (string) + (single_quoted_string) (arrow) (number)) (hashpair - (string) + (single_quoted_string) (arrow) (number)) (hashpair - (string) + (single_quoted_string) (arrow) (number))))) diff --git a/test/corpus/node-definition.txt b/test/corpus/node-definition.txt index 94fd224..91a4958 100644 --- a/test/corpus/node-definition.txt +++ b/test/corpus/node-definition.txt @@ -11,7 +11,7 @@ node /asdf.*/{} (statement (node_definition (hostname - (string)) + (single_quoted_string)) (block))) (statement (node_definition diff --git a/test/corpus/resource-collectors.txt b/test/corpus/resource-collectors.txt index 739a784..46ada67 100644 --- a/test/corpus/resource-collectors.txt +++ b/test/corpus/resource-collectors.txt @@ -47,7 +47,7 @@ Foo::Bar <<| tag == 'foo' |>> (collect_query (binary (name) - (string)))))) + (single_quoted_string)))))) ================================================================================ resource collectors with arguments diff --git a/test/corpus/resource-defaults.txt b/test/corpus/resource-defaults.txt index d23b53e..04748c1 100644 --- a/test/corpus/resource-defaults.txt +++ b/test/corpus/resource-defaults.txt @@ -20,7 +20,7 @@ resource defaults (attribute (name) (arrow) - (string)) + (single_quoted_string)) (attribute (name) (arrow) @@ -38,11 +38,11 @@ resource defaults (attribute (name) (arrow) - (string)) + (single_quoted_string)) (attribute (name) (arrow) (type) (access (access_element - (string)))))))) + (single_quoted_string)))))))) diff --git a/test/corpus/resource-definition.txt b/test/corpus/resource-definition.txt index f7f72da..b4b9bcc 100644 --- a/test/corpus/resource-definition.txt +++ b/test/corpus/resource-definition.txt @@ -89,5 +89,5 @@ class foo ( (regular_parameter (variable (name)) - (string))))) + (single_quoted_string))))) (block)))) diff --git a/test/corpus/resource-scope.txt b/test/corpus/resource-scope.txt index 7aef103..d798ee1 100644 --- a/test/corpus/resource-scope.txt +++ b/test/corpus/resource-scope.txt @@ -9,7 +9,7 @@ identifier top scope (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ identifier top scope with package @@ -22,7 +22,7 @@ identifier top scope with package (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ identifier relative with package @@ -35,7 +35,7 @@ asdf::asdf {'asdf':} (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ identifier relative @@ -48,4 +48,4 @@ asdf {'asdf':} (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) diff --git a/test/corpus/resource-usage.txt b/test/corpus/resource-usage.txt index 11b884c..ef58b8d 100644 --- a/test/corpus/resource-usage.txt +++ b/test/corpus/resource-usage.txt @@ -9,7 +9,7 @@ package {'ntp':} (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ resource usage with arguments @@ -25,16 +25,16 @@ package { 'ntp': (name) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (name) (arrow) - (string)) + (single_quoted_string)) (attribute (name) (arrow) - (string))))))) + (single_quoted_string))))))) ================================================================================ resource usage with element reference @@ -53,7 +53,7 @@ foo { $_key['name']: (name)) (access (access_element - (string)))) + (single_quoted_string)))) (attribute_list (attribute (name) @@ -74,7 +74,7 @@ foo { 'bar': (name) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (arrow) @@ -86,7 +86,7 @@ foo { 'bar': (type) (access (access_element - (string))))))))) + (single_quoted_string))))))))) ================================================================================ resource usage with multiple items @@ -108,7 +108,7 @@ user { (name) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (name) @@ -117,10 +117,10 @@ user { (attribute (name) (arrow) - (string)))) + (single_quoted_string)))) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (name) @@ -129,7 +129,7 @@ user { (attribute (name) (arrow) - (string))))))) + (single_quoted_string))))))) ================================================================================ resource usage with multiple items and default @@ -153,7 +153,7 @@ user { (name) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (name) @@ -162,10 +162,10 @@ user { (attribute (name) (arrow) - (string)))) + (single_quoted_string)))) (resource_body (resource_title - (string)) + (single_quoted_string)) (attribute_list (attribute (name) @@ -174,7 +174,7 @@ user { (attribute (name) (arrow) - (string)))) + (single_quoted_string)))) (resource_body (resource_title (default)) @@ -182,4 +182,4 @@ user { (attribute (name) (arrow) - (string))))))) + (single_quoted_string))))))) diff --git a/test/corpus/selector.txt b/test/corpus/selector.txt index 157c876..f09a866 100644 --- a/test/corpus/selector.txt +++ b/test/corpus/selector.txt @@ -17,14 +17,14 @@ $rootgroup = $facts ? { (qmark) (selbrace) (selector_option - (string) - (string)) + (single_quoted_string) + (single_quoted_string)) (selector_option (regex) - (string)) + (single_quoted_string)) (selector_option (default) - (string))))) + (single_quoted_string))))) ================================================================================ selector with data types @@ -71,4 +71,4 @@ $enable_real = $enable ? { (name) (argument_list (argument - (string)))))))) + (single_quoted_string)))))))) diff --git a/test/corpus/statement-functions.txt b/test/corpus/statement-functions.txt index 22b6132..a26630b 100644 --- a/test/corpus/statement-functions.txt +++ b/test/corpus/statement-functions.txt @@ -39,9 +39,9 @@ include ['base::linux', 'apache'] (argument (array (array_element - (string)) + (single_quoted_string)) (array_element - (string)))))))) + (single_quoted_string)))))))) ================================================================================ compositions include from variable diff --git a/test/corpus/string-interpolation.txt b/test/corpus/string-interpolation.txt index 2baae07..7768466 100644 --- a/test/corpus/string-interpolation.txt +++ b/test/corpus/string-interpolation.txt @@ -5,7 +5,7 @@ string with interpolation -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -15,7 +15,7 @@ string with interpolation at start -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -25,7 +25,7 @@ string with multiple interpolations -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation) (interpolation)))) @@ -36,7 +36,7 @@ string with interpolation without braces -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -46,7 +46,7 @@ string with interpolation explicit sigil -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -56,7 +56,7 @@ string with interpolation hash -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -66,7 +66,7 @@ string with interpolation with absolute variable without sigil -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (interpolation)))) ================================================================================ @@ -76,7 +76,7 @@ string with escaped dollar character -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence)))) ================================================================================ @@ -86,4 +86,4 @@ single quoted string with content looking like interpolation -------------------------------------------------------------------------------- (manifest (statement - (string))) + (single_quoted_string))) diff --git a/test/corpus/strings.txt b/test/corpus/strings.txt index b9babff..8e43f1e 100644 --- a/test/corpus/strings.txt +++ b/test/corpus/strings.txt @@ -6,9 +6,9 @@ string with single quotes -------------------------------------------------------------------------------- (manifest (statement - (string)) + (single_quoted_string)) (statement - (string))) + (single_quoted_string))) ================================================================================ string with double quotes @@ -17,7 +17,7 @@ string with double quotes -------------------------------------------------------------------------------- (manifest (statement - (string))) + (double_quoted_string))) ================================================================================ string with escape sequence @@ -26,7 +26,7 @@ string with escape sequence -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence)))) ================================================================================ @@ -36,7 +36,7 @@ string with escape sequence at start -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence)))) ================================================================================ @@ -46,7 +46,7 @@ string with escape sequence at end -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence)))) ================================================================================ @@ -56,7 +56,7 @@ string with multiple escape sequences -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence) (escape_sequence)))) @@ -67,7 +67,7 @@ string with escape sequence single quote -------------------------------------------------------------------------------- (manifest (statement - (string))) + (single_quoted_string))) ================================================================================ string with single underscore @@ -76,7 +76,7 @@ string with single underscore -------------------------------------------------------------------------------- (manifest (statement - (string))) + (single_quoted_string))) ================================================================================ string with literal backslash single quote @@ -85,7 +85,7 @@ string with literal backslash single quote -------------------------------------------------------------------------------- (manifest (statement - (string))) + (single_quoted_string))) ================================================================================ string with escaped newline @@ -95,5 +95,5 @@ bar" -------------------------------------------------------------------------------- (manifest (statement - (string + (double_quoted_string (escape_sequence)))) diff --git a/test/corpus/type-declaration.txt b/test/corpus/type-declaration.txt index 5951da2..3004bf7 100644 --- a/test/corpus/type-declaration.txt +++ b/test/corpus/type-declaration.txt @@ -10,9 +10,9 @@ type Ensure = Enum['present', 'absent'] (type) (access (access_element - (string)) + (single_quoted_string)) (access_element - (string)))))) + (single_quoted_string)))))) ================================================================================ type declaration enumeration with trailing comma @@ -26,9 +26,9 @@ type Ensure = Enum['present', 'absent',] (type) (access (access_element - (string)) + (single_quoted_string)) (access_element - (string)))))) + (single_quoted_string)))))) ================================================================================ type declaration variant @@ -61,11 +61,11 @@ type Nested = Optional[Enum['default', 'foo', 'bar']] (type) (access (access_element - (string)) + (single_quoted_string)) (access_element - (string)) + (single_quoted_string)) (access_element - (string)))))))) + (single_quoted_string)))))))) ================================================================================ type declaration regex pattern diff --git a/test/corpus/virtual-and-exported-resources.txt b/test/corpus/virtual-and-exported-resources.txt index 93c5fe2..b710232 100644 --- a/test/corpus/virtual-and-exported-resources.txt +++ b/test/corpus/virtual-and-exported-resources.txt @@ -10,7 +10,7 @@ virtual resources (name) (resource_body (resource_title - (string)))))) + (single_quoted_string)))))) ================================================================================ exported resources @@ -24,4 +24,4 @@ exported resources (name) (resource_body (resource_title - (string)))))) + (single_quoted_string))))))