From f0d835055c3303c8ee48860b23d3aa75218c2f27 Mon Sep 17 00:00:00 2001 From: Kamil Jakubus Date: Tue, 24 Oct 2023 14:36:28 +0200 Subject: [PATCH] parser: add `case_body` node for case statement --- grammar.js | 12 +- src/grammar.json | 39 +- src/node-types.json | 25 +- src/parser.c | 28475 ++++++++++++++++++++-------------------- test/corpus/basic.txt | 47 +- 5 files changed, 14320 insertions(+), 14278 deletions(-) diff --git a/grammar.js b/grammar.js index 1e27a4f..adf70da 100644 --- a/grammar.js +++ b/grammar.js @@ -550,7 +550,7 @@ module.exports = grammar({ _case_terminator: ($) => choice($._block_terminator, seq(kw("END"), kw("CASE"), $._terminator)), - _case_body: ($) => + _case_branch_body: ($) => choice( $.do_block, $.repeat_statement, @@ -563,18 +563,20 @@ module.exports = grammar({ kw("WHEN"), field("value", $._expression), kw("THEN"), - field("body", $._case_body) + field("body", $._case_branch_body) ), case_otherwise_branch: ($) => - seq(kw("OTHERWISE"), field("body", $._case_body)), + seq(kw("OTHERWISE"), field("body", $._case_branch_body)), + + case_body: ($) => + seq(repeat1($.case_when_branch), optional($.case_otherwise_branch)), case_statement: ($) => seq( kw("CASE"), $.identifier, ":", - repeat1($.case_when_branch), - optional($.case_otherwise_branch), + optional($.case_body), $._case_terminator ), diff --git a/src/grammar.json b/src/grammar.json index 47ce064..e3a1ced 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4036,7 +4036,7 @@ } ] }, - "_case_body": { + "_case_branch_body": { "type": "CHOICE", "members": [ { @@ -4105,7 +4105,7 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_case_body" + "name": "_case_branch_body" } } ] @@ -4134,11 +4134,35 @@ "name": "body", "content": { "type": "SYMBOL", - "name": "_case_body" + "name": "_case_branch_body" } } ] }, + "case_body": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "case_when_branch" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_otherwise_branch" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "case_statement": { "type": "SEQ", "members": [ @@ -4166,19 +4190,12 @@ "type": "STRING", "value": ":" }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "case_when_branch" - } - }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "case_otherwise_branch" + "name": "case_body" }, { "type": "BLANK" diff --git a/src/node-types.json b/src/node-types.json index 873eae9..0db140c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -462,6 +462,25 @@ ] } }, + { + "type": "case_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_otherwise_branch", + "named": true + }, + { + "type": "case_when_branch", + "named": true + } + ] + } + }, { "type": "case_otherwise_branch", "named": true, @@ -511,11 +530,7 @@ "required": true, "types": [ { - "type": "case_otherwise_branch", - "named": true - }, - { - "type": "case_when_branch", + "type": "case_body", "named": true }, { diff --git a/src/parser.c b/src/parser.c index 229e11d..43f00b2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -16,7 +16,7 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1174 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 271 +#define SYMBOL_COUNT 272 #define ALIAS_COUNT 0 #define TOKEN_COUNT 154 #define EXTERNAL_TOKEN_COUNT 1 @@ -251,50 +251,51 @@ enum { sym_output_stream_statement = 224, sym_do_block = 225, sym__case_terminator = 226, - sym__case_body = 227, + sym__case_branch_body = 227, sym_case_when_branch = 228, sym_case_otherwise_branch = 229, - sym_case_statement = 230, - sym_where_clause = 231, - sym_query_tuning = 232, - sym_sort_order = 233, - sym_sort_column = 234, - sym_sort_clause = 235, - sym_for_statement = 236, - sym_find_statement = 237, - sym_can_find_expression = 238, - sym_of = 239, - sym__using_first = 240, - sym__using_and = 241, - sym_transaction_statement = 242, - sym_abl_statement = 243, - sym_assign_statement = 244, - sym_catch_statement = 245, - sym_finally_statement = 246, - sym_accumulate_aggregate = 247, - sym_accumulate_statement = 248, - sym_accumulate_expression = 249, - sym_available_expression = 250, - aux_sym_source_code_repeat1 = 251, - aux_sym_qualified_name_repeat1 = 252, - aux_sym_include_repeat1 = 253, - aux_sym_double_quoted_string_repeat1 = 254, - aux_sym_single_quoted_string_repeat1 = 255, - aux_sym_variable_definition_repeat1 = 256, - aux_sym_function_call_argument_repeat1 = 257, - aux_sym_if_do_statement_repeat1 = 258, - aux_sym_function_statement_repeat1 = 259, - aux_sym_class_statement_repeat1 = 260, - aux_sym_implements_repeat1 = 261, - aux_sym_object_access_repeat1 = 262, - aux_sym_case_statement_repeat1 = 263, - aux_sym_sort_clause_repeat1 = 264, - aux_sym_for_statement_repeat1 = 265, - aux_sym_can_find_expression_repeat1 = 266, - aux_sym_can_find_expression_repeat2 = 267, - aux_sym_abl_statement_repeat1 = 268, - aux_sym_assign_statement_repeat1 = 269, - aux_sym_accumulate_statement_repeat1 = 270, + sym_case_body = 230, + sym_case_statement = 231, + sym_where_clause = 232, + sym_query_tuning = 233, + sym_sort_order = 234, + sym_sort_column = 235, + sym_sort_clause = 236, + sym_for_statement = 237, + sym_find_statement = 238, + sym_can_find_expression = 239, + sym_of = 240, + sym__using_first = 241, + sym__using_and = 242, + sym_transaction_statement = 243, + sym_abl_statement = 244, + sym_assign_statement = 245, + sym_catch_statement = 246, + sym_finally_statement = 247, + sym_accumulate_aggregate = 248, + sym_accumulate_statement = 249, + sym_accumulate_expression = 250, + sym_available_expression = 251, + aux_sym_source_code_repeat1 = 252, + aux_sym_qualified_name_repeat1 = 253, + aux_sym_include_repeat1 = 254, + aux_sym_double_quoted_string_repeat1 = 255, + aux_sym_single_quoted_string_repeat1 = 256, + aux_sym_variable_definition_repeat1 = 257, + aux_sym_function_call_argument_repeat1 = 258, + aux_sym_if_do_statement_repeat1 = 259, + aux_sym_function_statement_repeat1 = 260, + aux_sym_class_statement_repeat1 = 261, + aux_sym_implements_repeat1 = 262, + aux_sym_object_access_repeat1 = 263, + aux_sym_case_body_repeat1 = 264, + aux_sym_sort_clause_repeat1 = 265, + aux_sym_for_statement_repeat1 = 266, + aux_sym_can_find_expression_repeat1 = 267, + aux_sym_can_find_expression_repeat2 = 268, + aux_sym_abl_statement_repeat1 = 269, + aux_sym_assign_statement_repeat1 = 270, + aux_sym_accumulate_statement_repeat1 = 271, }; static const char * const ts_symbol_names[] = { @@ -525,9 +526,10 @@ static const char * const ts_symbol_names[] = { [sym_output_stream_statement] = "output_stream_statement", [sym_do_block] = "do_block", [sym__case_terminator] = "_case_terminator", - [sym__case_body] = "_case_body", + [sym__case_branch_body] = "_case_branch_body", [sym_case_when_branch] = "case_when_branch", [sym_case_otherwise_branch] = "case_otherwise_branch", + [sym_case_body] = "case_body", [sym_case_statement] = "case_statement", [sym_where_clause] = "where_clause", [sym_query_tuning] = "query_tuning", @@ -561,7 +563,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_class_statement_repeat1] = "class_statement_repeat1", [aux_sym_implements_repeat1] = "implements_repeat1", [aux_sym_object_access_repeat1] = "object_access_repeat1", - [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_case_body_repeat1] = "case_body_repeat1", [aux_sym_sort_clause_repeat1] = "sort_clause_repeat1", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", [aux_sym_can_find_expression_repeat1] = "can_find_expression_repeat1", @@ -799,9 +801,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_output_stream_statement] = sym_output_stream_statement, [sym_do_block] = sym_do_block, [sym__case_terminator] = sym__case_terminator, - [sym__case_body] = sym__case_body, + [sym__case_branch_body] = sym__case_branch_body, [sym_case_when_branch] = sym_case_when_branch, [sym_case_otherwise_branch] = sym_case_otherwise_branch, + [sym_case_body] = sym_case_body, [sym_case_statement] = sym_case_statement, [sym_where_clause] = sym_where_clause, [sym_query_tuning] = sym_query_tuning, @@ -835,7 +838,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_class_statement_repeat1] = aux_sym_class_statement_repeat1, [aux_sym_implements_repeat1] = aux_sym_implements_repeat1, [aux_sym_object_access_repeat1] = aux_sym_object_access_repeat1, - [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_case_body_repeat1] = aux_sym_case_body_repeat1, [aux_sym_sort_clause_repeat1] = aux_sym_sort_clause_repeat1, [aux_sym_for_statement_repeat1] = aux_sym_for_statement_repeat1, [aux_sym_can_find_expression_repeat1] = aux_sym_can_find_expression_repeat1, @@ -1756,7 +1759,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__case_body] = { + [sym__case_branch_body] = { .visible = false, .named = true, }, @@ -1768,6 +1771,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_case_body] = { + .visible = true, + .named = true, + }, [sym_case_statement] = { .visible = true, .named = true, @@ -1900,7 +1907,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_case_statement_repeat1] = { + [aux_sym_case_body_repeat1] = { .visible = false, .named = false, }, @@ -2148,70 +2155,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 2, - [5] = 2, - [6] = 3, - [7] = 3, + [3] = 2, + [4] = 4, + [5] = 4, + [6] = 2, + [7] = 4, [8] = 8, [9] = 9, [10] = 10, - [11] = 11, - [12] = 10, - [13] = 8, + [11] = 10, + [12] = 12, + [13] = 12, [14] = 14, - [15] = 14, - [16] = 9, - [17] = 11, + [15] = 8, + [16] = 14, + [17] = 9, [18] = 18, [19] = 19, - [20] = 20, + [20] = 18, [21] = 21, - [22] = 21, + [22] = 22, [23] = 23, - [24] = 18, + [24] = 24, [25] = 25, [26] = 26, [27] = 27, - [28] = 21, + [28] = 28, [29] = 29, [30] = 25, - [31] = 19, + [31] = 18, [32] = 32, - [33] = 33, - [34] = 32, - [35] = 19, - [36] = 18, - [37] = 20, - [38] = 29, - [39] = 23, - [40] = 27, - [41] = 27, - [42] = 26, - [43] = 29, - [44] = 25, - [45] = 45, - [46] = 46, - [47] = 46, - [48] = 48, - [49] = 45, - [50] = 48, + [33] = 29, + [34] = 34, + [35] = 23, + [36] = 19, + [37] = 34, + [38] = 26, + [39] = 32, + [40] = 26, + [41] = 41, + [42] = 29, + [43] = 24, + [44] = 28, + [45] = 27, + [46] = 25, + [47] = 24, + [48] = 22, + [49] = 32, + [50] = 21, [51] = 51, [52] = 52, [53] = 53, - [54] = 53, + [54] = 51, [55] = 55, - [56] = 56, - [57] = 51, - [58] = 56, - [59] = 59, - [60] = 59, - [61] = 55, - [62] = 52, + [56] = 53, + [57] = 52, + [58] = 58, + [59] = 55, + [60] = 60, + [61] = 60, + [62] = 58, [63] = 63, - [64] = 64, + [64] = 63, [65] = 65, - [66] = 64, + [66] = 66, [67] = 67, [68] = 68, [69] = 69, @@ -2221,7 +2228,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [73] = 73, [74] = 74, [75] = 75, - [76] = 76, + [76] = 75, [77] = 77, [78] = 78, [79] = 79, @@ -2231,352 +2238,352 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [83] = 83, [84] = 84, [85] = 85, - [86] = 83, + [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 90, - [91] = 83, - [92] = 83, - [93] = 83, + [90] = 75, + [91] = 91, + [92] = 75, + [93] = 75, [94] = 94, [95] = 95, - [96] = 94, - [97] = 94, - [98] = 98, - [99] = 99, - [100] = 98, - [101] = 98, - [102] = 94, - [103] = 98, - [104] = 98, - [105] = 94, + [96] = 96, + [97] = 96, + [98] = 95, + [99] = 96, + [100] = 96, + [101] = 95, + [102] = 95, + [103] = 96, + [104] = 104, + [105] = 95, [106] = 106, - [107] = 107, - [108] = 68, + [107] = 67, + [108] = 108, [109] = 109, - [110] = 110, - [111] = 67, - [112] = 109, - [113] = 113, + [110] = 109, + [111] = 111, + [112] = 112, + [113] = 109, [114] = 109, [115] = 109, - [116] = 109, + [116] = 68, [117] = 117, - [118] = 106, + [118] = 118, [119] = 119, [120] = 120, [121] = 121, [122] = 122, [123] = 123, [124] = 124, - [125] = 119, - [126] = 120, + [125] = 125, + [126] = 126, [127] = 127, [128] = 128, - [129] = 122, - [130] = 124, - [131] = 131, - [132] = 113, - [133] = 133, - [134] = 133, + [129] = 124, + [130] = 130, + [131] = 122, + [132] = 130, + [133] = 125, + [134] = 134, [135] = 135, - [136] = 136, + [136] = 119, [137] = 137, - [138] = 138, - [139] = 139, + [138] = 128, + [139] = 117, [140] = 140, - [141] = 141, - [142] = 133, - [143] = 123, - [144] = 131, - [145] = 133, - [146] = 137, - [147] = 138, - [148] = 139, - [149] = 149, + [141] = 117, + [142] = 137, + [143] = 127, + [144] = 134, + [145] = 119, + [146] = 123, + [147] = 118, + [148] = 123, + [149] = 120, [150] = 140, [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 156, + [152] = 112, + [153] = 130, + [154] = 118, + [155] = 151, + [156] = 124, [157] = 157, - [158] = 140, - [159] = 139, - [160] = 128, - [161] = 138, - [162] = 157, - [163] = 123, - [164] = 124, - [165] = 137, - [166] = 119, - [167] = 155, - [168] = 120, - [169] = 141, - [170] = 131, - [171] = 121, - [172] = 149, - [173] = 128, - [174] = 136, - [175] = 128, - [176] = 156, - [177] = 156, - [178] = 127, - [179] = 179, - [180] = 152, - [181] = 151, - [182] = 140, - [183] = 139, - [184] = 138, - [185] = 137, - [186] = 131, - [187] = 156, + [158] = 119, + [159] = 159, + [160] = 127, + [161] = 161, + [162] = 118, + [163] = 163, + [164] = 164, + [165] = 111, + [166] = 134, + [167] = 122, + [168] = 137, + [169] = 128, + [170] = 170, + [171] = 171, + [172] = 69, + [173] = 151, + [174] = 134, + [175] = 130, + [176] = 117, + [177] = 177, + [178] = 124, + [179] = 123, + [180] = 122, + [181] = 181, + [182] = 137, + [183] = 140, + [184] = 159, + [185] = 128, + [186] = 126, + [187] = 161, [188] = 188, - [189] = 153, - [190] = 190, - [191] = 121, - [192] = 69, - [193] = 120, - [194] = 119, - [195] = 124, - [196] = 123, - [197] = 197, + [189] = 177, + [190] = 140, + [191] = 135, + [192] = 192, + [193] = 121, + [194] = 164, + [195] = 181, + [196] = 151, + [197] = 79, [198] = 198, [199] = 199, - [200] = 88, - [201] = 78, - [202] = 202, + [200] = 78, + [201] = 201, + [202] = 81, [203] = 203, - [204] = 79, - [205] = 205, - [206] = 206, - [207] = 87, - [208] = 76, - [209] = 80, - [210] = 210, - [211] = 211, - [212] = 74, - [213] = 75, - [214] = 70, - [215] = 179, - [216] = 216, - [217] = 81, - [218] = 90, - [219] = 89, - [220] = 72, - [221] = 84, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 73, + [204] = 204, + [205] = 89, + [206] = 80, + [207] = 207, + [208] = 87, + [209] = 88, + [210] = 188, + [211] = 77, + [212] = 70, + [213] = 84, + [214] = 214, + [215] = 83, + [216] = 74, + [217] = 217, + [218] = 218, + [219] = 91, + [220] = 220, + [221] = 221, + [222] = 71, + [223] = 73, + [224] = 157, + [225] = 225, [226] = 226, [227] = 227, - [228] = 228, - [229] = 154, - [230] = 77, + [228] = 72, + [229] = 229, + [230] = 82, [231] = 231, - [232] = 71, - [233] = 228, - [234] = 199, - [235] = 226, - [236] = 222, - [237] = 202, - [238] = 210, - [239] = 231, - [240] = 198, - [241] = 197, - [242] = 205, - [243] = 223, - [244] = 227, - [245] = 203, - [246] = 211, - [247] = 216, - [248] = 224, - [249] = 206, - [250] = 110, - [251] = 107, + [232] = 232, + [233] = 201, + [234] = 221, + [235] = 225, + [236] = 218, + [237] = 217, + [238] = 198, + [239] = 204, + [240] = 203, + [241] = 199, + [242] = 214, + [243] = 207, + [244] = 226, + [245] = 229, + [246] = 231, + [247] = 232, + [248] = 227, + [249] = 220, + [250] = 106, + [251] = 108, [252] = 252, - [253] = 154, + [253] = 171, [254] = 252, - [255] = 255, - [256] = 255, - [257] = 117, - [258] = 252, - [259] = 190, - [260] = 255, - [261] = 179, + [255] = 252, + [256] = 170, + [257] = 157, + [258] = 258, + [259] = 258, + [260] = 258, + [261] = 188, [262] = 262, - [263] = 81, - [264] = 84, - [265] = 80, - [266] = 90, - [267] = 87, - [268] = 76, - [269] = 262, - [270] = 75, - [271] = 89, - [272] = 88, - [273] = 77, - [274] = 78, - [275] = 79, - [276] = 110, - [277] = 117, - [278] = 107, - [279] = 190, - [280] = 84, - [281] = 81, - [282] = 88, + [263] = 82, + [264] = 79, + [265] = 83, + [266] = 84, + [267] = 78, + [268] = 89, + [269] = 80, + [270] = 81, + [271] = 91, + [272] = 87, + [273] = 88, + [274] = 77, + [275] = 262, + [276] = 171, + [277] = 108, + [278] = 106, + [279] = 170, + [280] = 82, + [281] = 79, + [282] = 282, [283] = 89, - [284] = 90, - [285] = 75, - [286] = 77, - [287] = 76, - [288] = 87, - [289] = 79, - [290] = 290, - [291] = 291, - [292] = 78, - [293] = 80, - [294] = 294, - [295] = 295, - [296] = 294, + [284] = 284, + [285] = 91, + [286] = 88, + [287] = 287, + [288] = 78, + [289] = 289, + [290] = 84, + [291] = 83, + [292] = 80, + [293] = 81, + [294] = 87, + [295] = 77, + [296] = 289, [297] = 297, - [298] = 106, + [298] = 298, [299] = 299, - [300] = 300, + [300] = 68, [301] = 301, [302] = 302, [303] = 303, - [304] = 68, - [305] = 305, + [304] = 304, + [305] = 301, [306] = 306, - [307] = 305, + [307] = 304, [308] = 308, - [309] = 301, - [310] = 300, - [311] = 306, - [312] = 300, - [313] = 300, - [314] = 314, - [315] = 315, - [316] = 302, - [317] = 299, - [318] = 303, - [319] = 319, - [320] = 308, - [321] = 321, - [322] = 314, - [323] = 323, - [324] = 321, - [325] = 323, - [326] = 299, - [327] = 323, - [328] = 328, - [329] = 323, - [330] = 306, - [331] = 110, - [332] = 113, - [333] = 328, - [334] = 67, - [335] = 323, - [336] = 117, - [337] = 107, - [338] = 315, - [339] = 306, - [340] = 179, - [341] = 154, - [342] = 69, - [343] = 190, - [344] = 72, + [309] = 111, + [310] = 299, + [311] = 311, + [312] = 312, + [313] = 302, + [314] = 67, + [315] = 301, + [316] = 303, + [317] = 106, + [318] = 318, + [319] = 298, + [320] = 298, + [321] = 306, + [322] = 312, + [323] = 171, + [324] = 311, + [325] = 308, + [326] = 326, + [327] = 327, + [328] = 303, + [329] = 301, + [330] = 108, + [331] = 326, + [332] = 327, + [333] = 308, + [334] = 298, + [335] = 301, + [336] = 308, + [337] = 318, + [338] = 338, + [339] = 112, + [340] = 170, + [341] = 69, + [342] = 157, + [343] = 188, + [344] = 344, [345] = 345, - [346] = 216, - [347] = 347, - [348] = 202, - [349] = 226, - [350] = 222, - [351] = 227, - [352] = 210, - [353] = 199, - [354] = 203, - [355] = 211, - [356] = 206, + [346] = 344, + [347] = 214, + [348] = 199, + [349] = 201, + [350] = 203, + [351] = 231, + [352] = 227, + [353] = 198, + [354] = 232, + [355] = 218, + [356] = 225, [357] = 357, - [358] = 345, + [358] = 226, [359] = 359, - [360] = 70, - [361] = 205, - [362] = 73, - [363] = 357, - [364] = 197, - [365] = 71, - [366] = 366, - [367] = 198, - [368] = 74, - [369] = 366, - [370] = 347, - [371] = 223, - [372] = 359, - [373] = 228, - [374] = 224, - [375] = 231, + [360] = 204, + [361] = 229, + [362] = 217, + [363] = 74, + [364] = 359, + [365] = 72, + [366] = 73, + [367] = 367, + [368] = 70, + [369] = 367, + [370] = 357, + [371] = 207, + [372] = 71, + [373] = 345, + [374] = 220, + [375] = 221, [376] = 376, [377] = 376, [378] = 378, [379] = 379, - [380] = 378, + [380] = 380, [381] = 381, - [382] = 382, + [382] = 378, [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 386, - [388] = 381, + [387] = 387, + [388] = 388, [389] = 389, [390] = 390, [391] = 391, - [392] = 392, - [393] = 390, + [392] = 379, + [393] = 381, [394] = 394, - [395] = 384, - [396] = 392, - [397] = 385, - [398] = 391, - [399] = 382, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 388, [400] = 383, - [401] = 379, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 389, - [408] = 394, + [401] = 396, + [402] = 394, + [403] = 390, + [404] = 398, + [405] = 391, + [406] = 397, + [407] = 395, + [408] = 385, [409] = 409, [410] = 410, [411] = 411, - [412] = 383, - [413] = 378, - [414] = 379, - [415] = 409, + [412] = 412, + [413] = 413, + [414] = 395, + [415] = 415, [416] = 416, - [417] = 389, - [418] = 418, + [417] = 417, + [418] = 391, [419] = 419, - [420] = 420, + [420] = 398, [421] = 421, [422] = 422, [423] = 423, [424] = 424, - [425] = 392, - [426] = 384, + [425] = 410, + [426] = 426, [427] = 427, [428] = 428, [429] = 429, [430] = 430, - [431] = 391, + [431] = 409, [432] = 432, [433] = 433, [434] = 434, @@ -2585,7 +2592,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [437] = 437, [438] = 438, [439] = 439, - [440] = 394, + [440] = 440, [441] = 441, [442] = 442, [443] = 443, @@ -2593,7 +2600,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [445] = 445, [446] = 446, [447] = 447, - [448] = 448, + [448] = 378, [449] = 449, [450] = 450, [451] = 451, @@ -2608,404 +2615,404 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [460] = 460, [461] = 461, [462] = 462, - [463] = 463, - [464] = 464, + [463] = 456, + [464] = 462, [465] = 465, [466] = 466, - [467] = 467, - [468] = 468, + [467] = 461, + [468] = 452, [469] = 469, [470] = 470, [471] = 471, [472] = 472, - [473] = 473, + [473] = 451, [474] = 474, [475] = 475, - [476] = 476, - [477] = 477, + [476] = 454, + [477] = 450, [478] = 478, [479] = 479, [480] = 480, - [481] = 481, + [481] = 397, [482] = 482, [483] = 483, - [484] = 484, - [485] = 482, - [486] = 484, - [487] = 483, - [488] = 480, - [489] = 479, - [490] = 481, - [491] = 477, - [492] = 476, - [493] = 410, - [494] = 478, - [495] = 475, - [496] = 470, - [497] = 466, - [498] = 465, - [499] = 472, - [500] = 471, - [501] = 463, - [502] = 461, + [484] = 444, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 441, + [492] = 453, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 433, + [502] = 429, [503] = 503, [504] = 504, - [505] = 469, - [506] = 468, - [507] = 452, - [508] = 451, - [509] = 467, - [510] = 447, - [511] = 464, - [512] = 446, - [513] = 445, - [514] = 437, - [515] = 462, - [516] = 434, - [517] = 517, - [518] = 518, - [519] = 429, - [520] = 460, - [521] = 424, - [522] = 423, - [523] = 422, - [524] = 421, - [525] = 459, - [526] = 458, - [527] = 419, - [528] = 457, - [529] = 418, - [530] = 518, - [531] = 531, - [532] = 456, - [533] = 455, - [534] = 517, - [535] = 454, - [536] = 531, - [537] = 537, - [538] = 453, - [539] = 539, - [540] = 540, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 423, + [509] = 507, + [510] = 505, + [511] = 506, + [512] = 503, + [513] = 500, + [514] = 499, + [515] = 398, + [516] = 498, + [517] = 449, + [518] = 419, + [519] = 440, + [520] = 490, + [521] = 497, + [522] = 489, + [523] = 485, + [524] = 480, + [525] = 479, + [526] = 496, + [527] = 495, + [528] = 391, + [529] = 493, + [530] = 475, + [531] = 474, + [532] = 472, + [533] = 488, + [534] = 486, + [535] = 471, + [536] = 483, + [537] = 470, + [538] = 417, + [539] = 482, + [540] = 465, [541] = 541, - [542] = 537, - [543] = 503, - [544] = 438, - [545] = 436, - [546] = 432, - [547] = 430, - [548] = 548, - [549] = 389, - [550] = 539, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 379, - [559] = 411, - [560] = 383, - [561] = 378, - [562] = 562, - [563] = 563, - [564] = 504, - [565] = 474, - [566] = 473, - [567] = 450, - [568] = 540, - [569] = 449, - [570] = 448, - [571] = 444, - [572] = 443, - [573] = 541, - [574] = 563, - [575] = 548, - [576] = 442, - [577] = 441, - [578] = 394, - [579] = 551, - [580] = 552, - [581] = 439, - [582] = 384, - [583] = 435, - [584] = 433, - [585] = 391, - [586] = 562, - [587] = 416, - [588] = 420, - [589] = 392, - [590] = 427, - [591] = 428, - [592] = 557, - [593] = 556, - [594] = 555, - [595] = 554, - [596] = 553, + [542] = 437, + [543] = 460, + [544] = 428, + [545] = 430, + [546] = 459, + [547] = 434, + [548] = 435, + [549] = 457, + [550] = 378, + [551] = 455, + [552] = 415, + [553] = 411, + [554] = 413, + [555] = 447, + [556] = 446, + [557] = 443, + [558] = 442, + [559] = 390, + [560] = 560, + [561] = 394, + [562] = 396, + [563] = 439, + [564] = 438, + [565] = 436, + [566] = 432, + [567] = 427, + [568] = 426, + [569] = 569, + [570] = 424, + [571] = 422, + [572] = 396, + [573] = 394, + [574] = 421, + [575] = 569, + [576] = 412, + [577] = 458, + [578] = 487, + [579] = 494, + [580] = 504, + [581] = 581, + [582] = 390, + [583] = 478, + [584] = 560, + [585] = 581, + [586] = 397, + [587] = 466, + [588] = 445, + [589] = 416, + [590] = 395, + [591] = 541, + [592] = 469, + [593] = 593, + [594] = 594, + [595] = 593, + [596] = 594, [597] = 597, [598] = 598, - [599] = 597, - [600] = 600, - [601] = 601, - [602] = 600, - [603] = 601, + [599] = 599, + [600] = 598, + [601] = 597, + [602] = 602, + [603] = 599, [604] = 604, [605] = 605, - [606] = 605, - [607] = 605, + [606] = 604, + [607] = 607, [608] = 608, - [609] = 609, + [609] = 604, [610] = 610, [611] = 611, [612] = 612, - [613] = 612, - [614] = 610, + [613] = 611, + [614] = 614, [615] = 615, - [616] = 611, - [617] = 610, - [618] = 618, - [619] = 615, - [620] = 620, - [621] = 620, - [622] = 611, - [623] = 612, - [624] = 615, + [616] = 615, + [617] = 617, + [618] = 612, + [619] = 611, + [620] = 612, + [621] = 617, + [622] = 614, + [623] = 615, + [624] = 614, [625] = 625, [626] = 626, - [627] = 626, - [628] = 628, - [629] = 626, + [627] = 625, + [628] = 625, + [629] = 629, [630] = 630, [631] = 631, [632] = 632, [633] = 633, - [634] = 634, + [634] = 632, [635] = 635, [636] = 636, - [637] = 637, + [637] = 633, [638] = 638, [639] = 639, - [640] = 636, - [641] = 637, - [642] = 631, - [643] = 638, - [644] = 634, + [640] = 640, + [641] = 641, + [642] = 640, + [643] = 639, + [644] = 641, [645] = 645, [646] = 646, [647] = 647, - [648] = 646, - [649] = 645, - [650] = 645, - [651] = 651, - [652] = 652, - [653] = 646, - [654] = 651, - [655] = 655, - [656] = 652, - [657] = 651, - [658] = 652, - [659] = 647, - [660] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 645, + [652] = 649, + [653] = 649, + [654] = 648, + [655] = 647, + [656] = 647, + [657] = 648, + [658] = 645, + [659] = 650, + [660] = 650, [661] = 661, [662] = 662, [663] = 663, [664] = 664, - [665] = 664, - [666] = 666, + [665] = 665, + [666] = 664, [667] = 667, - [668] = 662, - [669] = 669, - [670] = 664, + [668] = 665, + [669] = 664, + [670] = 670, [671] = 664, [672] = 672, [673] = 673, - [674] = 661, + [674] = 672, [675] = 675, - [676] = 676, - [677] = 667, + [676] = 663, + [677] = 677, [678] = 678, - [679] = 678, + [679] = 679, [680] = 680, [681] = 681, - [682] = 682, + [682] = 679, [683] = 683, [684] = 684, [685] = 685, [686] = 686, [687] = 687, - [688] = 687, + [688] = 688, [689] = 689, [690] = 690, [691] = 686, [692] = 692, [693] = 693, - [694] = 694, - [695] = 684, - [696] = 689, - [697] = 697, + [694] = 689, + [695] = 695, + [696] = 696, + [697] = 693, [698] = 698, - [699] = 685, - [700] = 700, - [701] = 697, - [702] = 693, - [703] = 700, + [699] = 699, + [700] = 684, + [701] = 692, + [702] = 698, + [703] = 696, [704] = 704, - [705] = 704, - [706] = 690, - [707] = 707, - [708] = 683, + [705] = 688, + [706] = 683, + [707] = 699, + [708] = 704, [709] = 709, [710] = 710, [711] = 710, - [712] = 712, - [713] = 712, + [712] = 710, + [713] = 710, [714] = 714, - [715] = 714, - [716] = 710, - [717] = 710, + [715] = 709, + [716] = 716, + [717] = 717, [718] = 718, [719] = 719, [720] = 720, - [721] = 721, - [722] = 721, + [721] = 719, + [722] = 722, [723] = 723, [724] = 724, [725] = 725, [726] = 726, [727] = 727, - [728] = 728, + [728] = 725, [729] = 729, [730] = 730, [731] = 731, [732] = 732, [733] = 733, - [734] = 732, - [735] = 735, + [734] = 734, + [735] = 733, [736] = 736, - [737] = 737, + [737] = 736, [738] = 738, [739] = 739, [740] = 740, [741] = 741, - [742] = 742, - [743] = 742, - [744] = 739, + [742] = 740, + [743] = 743, + [744] = 744, [745] = 745, [746] = 746, [747] = 747, [748] = 741, - [749] = 735, + [749] = 738, [750] = 750, - [751] = 738, - [752] = 736, - [753] = 753, + [751] = 751, + [752] = 752, + [753] = 746, [754] = 754, [755] = 747, - [756] = 756, + [756] = 750, [757] = 757, [758] = 758, - [759] = 759, - [760] = 757, - [761] = 74, + [759] = 758, + [760] = 760, + [761] = 761, [762] = 762, [763] = 763, [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, + [765] = 762, + [766] = 763, + [767] = 70, [768] = 768, - [769] = 769, - [770] = 758, - [771] = 771, - [772] = 759, - [773] = 769, + [769] = 764, + [770] = 770, + [771] = 758, + [772] = 772, + [773] = 772, [774] = 774, - [775] = 762, - [776] = 759, + [775] = 775, + [776] = 72, [777] = 777, [778] = 778, - [779] = 759, - [780] = 774, - [781] = 778, - [782] = 782, - [783] = 762, - [784] = 757, + [779] = 770, + [780] = 772, + [781] = 758, + [782] = 768, + [783] = 760, + [784] = 784, [785] = 785, - [786] = 758, - [787] = 777, - [788] = 73, - [789] = 762, - [790] = 790, + [786] = 786, + [787] = 768, + [788] = 788, + [789] = 764, + [790] = 764, [791] = 791, [792] = 792, [793] = 793, [794] = 794, - [795] = 466, + [795] = 795, [796] = 796, - [797] = 478, - [798] = 462, - [799] = 457, - [800] = 800, - [801] = 801, - [802] = 791, - [803] = 790, + [797] = 490, + [798] = 798, + [799] = 799, + [800] = 157, + [801] = 460, + [802] = 802, + [803] = 803, [804] = 804, - [805] = 801, + [805] = 805, [806] = 806, [807] = 807, [808] = 808, - [809] = 179, - [810] = 810, + [809] = 809, + [810] = 412, [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 518, - [817] = 817, - [818] = 818, - [819] = 794, - [820] = 154, - [821] = 384, + [812] = 805, + [813] = 188, + [814] = 807, + [815] = 391, + [816] = 816, + [817] = 793, + [818] = 378, + [819] = 390, + [820] = 394, + [821] = 396, [822] = 822, - [823] = 823, - [824] = 389, - [825] = 379, - [826] = 383, - [827] = 378, - [828] = 792, - [829] = 391, - [830] = 392, - [831] = 811, - [832] = 814, - [833] = 394, + [823] = 397, + [824] = 395, + [825] = 498, + [826] = 493, + [827] = 398, + [828] = 454, + [829] = 829, + [830] = 804, + [831] = 803, + [832] = 806, + [833] = 423, [834] = 834, [835] = 835, [836] = 836, - [837] = 837, - [838] = 800, - [839] = 804, - [840] = 840, + [837] = 791, + [838] = 838, + [839] = 839, + [840] = 791, [841] = 841, - [842] = 793, - [843] = 441, - [844] = 416, - [845] = 836, - [846] = 504, - [847] = 836, - [848] = 817, - [849] = 813, - [850] = 850, - [851] = 822, - [852] = 852, - [853] = 793, - [854] = 837, - [855] = 804, - [856] = 856, - [857] = 808, - [858] = 835, - [859] = 794, - [860] = 810, + [842] = 829, + [843] = 802, + [844] = 836, + [845] = 845, + [846] = 846, + [847] = 803, + [848] = 792, + [849] = 816, + [850] = 838, + [851] = 851, + [852] = 838, + [853] = 846, + [854] = 799, + [855] = 822, + [856] = 445, + [857] = 839, + [858] = 858, + [859] = 806, + [860] = 860, [861] = 861, [862] = 862, [863] = 863, @@ -3013,104 +3020,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [865] = 865, [866] = 866, [867] = 867, - [868] = 868, - [869] = 869, + [868] = 862, + [869] = 864, [870] = 870, - [871] = 871, + [871] = 866, [872] = 872, [873] = 873, - [874] = 868, + [874] = 874, [875] = 875, [876] = 876, - [877] = 866, + [877] = 877, [878] = 878, [879] = 879, - [880] = 880, + [880] = 872, [881] = 881, - [882] = 878, - [883] = 879, + [882] = 882, + [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 887, - [888] = 885, - [889] = 889, - [890] = 890, - [891] = 891, + [887] = 380, + [888] = 888, + [889] = 873, + [890] = 860, + [891] = 877, [892] = 892, - [893] = 893, - [894] = 894, + [893] = 876, + [894] = 870, [895] = 895, [896] = 896, - [897] = 897, - [898] = 866, + [897] = 881, + [898] = 896, [899] = 899, - [900] = 894, - [901] = 893, - [902] = 902, - [903] = 873, - [904] = 867, - [905] = 905, - [906] = 875, - [907] = 905, + [900] = 900, + [901] = 867, + [902] = 879, + [903] = 903, + [904] = 886, + [905] = 882, + [906] = 906, + [907] = 885, [908] = 908, [909] = 909, [910] = 910, - [911] = 911, + [911] = 863, [912] = 912, - [913] = 868, - [914] = 911, - [915] = 915, + [913] = 913, + [914] = 883, + [915] = 864, [916] = 916, [917] = 917, [918] = 918, - [919] = 890, - [920] = 869, - [921] = 897, + [919] = 875, + [920] = 899, + [921] = 921, [922] = 922, - [923] = 886, - [924] = 896, - [925] = 897, - [926] = 891, - [927] = 927, - [928] = 928, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 900, + [928] = 918, [929] = 929, - [930] = 930, + [930] = 903, [931] = 931, - [932] = 876, - [933] = 890, - [934] = 861, - [935] = 935, - [936] = 887, - [937] = 885, - [938] = 868, - [939] = 865, - [940] = 881, - [941] = 879, - [942] = 892, - [943] = 918, - [944] = 912, - [945] = 880, - [946] = 927, - [947] = 895, - [948] = 406, - [949] = 949, - [950] = 916, - [951] = 889, - [952] = 902, - [953] = 870, - [954] = 899, - [955] = 871, - [956] = 909, - [957] = 930, - [958] = 958, - [959] = 908, - [960] = 863, - [961] = 862, - [962] = 928, - [963] = 935, - [964] = 863, - [965] = 871, + [932] = 932, + [933] = 933, + [934] = 923, + [935] = 908, + [936] = 909, + [937] = 932, + [938] = 938, + [939] = 910, + [940] = 938, + [941] = 899, + [942] = 873, + [943] = 875, + [944] = 924, + [945] = 921, + [946] = 918, + [947] = 865, + [948] = 912, + [949] = 874, + [950] = 931, + [951] = 884, + [952] = 900, + [953] = 926, + [954] = 929, + [955] = 925, + [956] = 892, + [957] = 932, + [958] = 888, + [959] = 864, + [960] = 923, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 933, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, @@ -3126,16 +3133,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [978] = 978, [979] = 979, [980] = 980, - [981] = 972, + [981] = 981, [982] = 982, - [983] = 980, + [983] = 983, [984] = 984, [985] = 985, [986] = 986, [987] = 987, [988] = 988, [989] = 989, - [990] = 972, + [990] = 990, [991] = 991, [992] = 992, [993] = 993, @@ -3147,174 +3154,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [999] = 999, [1000] = 1000, [1001] = 1001, - [1002] = 1002, - [1003] = 1003, + [1002] = 999, + [1003] = 998, [1004] = 1004, [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, + [1006] = 973, + [1007] = 991, + [1008] = 977, [1009] = 1009, - [1010] = 970, - [1011] = 971, + [1010] = 978, + [1011] = 981, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, + [1013] = 979, + [1014] = 980, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 980, + [1019] = 1012, [1020] = 1020, - [1021] = 986, - [1022] = 1022, + [1021] = 992, + [1022] = 986, [1023] = 1023, - [1024] = 1024, - [1025] = 970, - [1026] = 971, + [1024] = 989, + [1025] = 993, + [1026] = 996, [1027] = 1027, - [1028] = 1028, - [1029] = 1029, - [1030] = 980, - [1031] = 986, + [1028] = 979, + [1029] = 980, + [1030] = 1004, + [1031] = 1031, [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 986, - [1036] = 986, - [1037] = 1009, - [1038] = 1018, - [1039] = 1034, - [1040] = 1004, - [1041] = 980, + [1033] = 986, + [1034] = 989, + [1035] = 1035, + [1036] = 1036, + [1037] = 1005, + [1038] = 966, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, [1042] = 1042, - [1043] = 979, - [1044] = 1044, - [1045] = 978, - [1046] = 969, - [1047] = 992, - [1048] = 1006, - [1049] = 1022, - [1050] = 971, - [1051] = 970, - [1052] = 1002, + [1043] = 1043, + [1044] = 967, + [1045] = 979, + [1046] = 1046, + [1047] = 1047, + [1048] = 965, + [1049] = 1049, + [1050] = 1050, + [1051] = 1017, + [1052] = 969, [1053] = 1053, - [1054] = 1028, - [1055] = 1055, - [1056] = 1055, + [1054] = 1054, + [1055] = 970, + [1056] = 1056, [1057] = 1057, - [1058] = 1057, + [1058] = 1058, [1059] = 1059, - [1060] = 1060, - [1061] = 1027, - [1062] = 1020, - [1063] = 1063, - [1064] = 1064, - [1065] = 1059, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 971, - [1071] = 1063, - [1072] = 1066, - [1073] = 1067, + [1060] = 1059, + [1061] = 1061, + [1062] = 1062, + [1063] = 1050, + [1064] = 1020, + [1065] = 1065, + [1066] = 1042, + [1067] = 1058, + [1068] = 1032, + [1069] = 1041, + [1070] = 1039, + [1071] = 1071, + [1072] = 1027, + [1073] = 1035, [1074] = 1074, - [1075] = 1075, - [1076] = 1013, - [1077] = 1012, - [1078] = 1078, + [1075] = 989, + [1076] = 985, + [1077] = 1015, + [1078] = 1009, [1079] = 1079, - [1080] = 970, - [1081] = 967, - [1082] = 1082, - [1083] = 1083, - [1084] = 1007, - [1085] = 1003, + [1080] = 1054, + [1081] = 1000, + [1082] = 997, + [1083] = 989, + [1084] = 1084, + [1085] = 984, [1086] = 1086, - [1087] = 1087, + [1087] = 1057, [1088] = 1088, - [1089] = 1074, + [1089] = 974, [1090] = 1090, - [1091] = 1091, + [1091] = 968, [1092] = 1092, - [1093] = 1033, - [1094] = 1094, - [1095] = 978, - [1096] = 1096, - [1097] = 1075, - [1098] = 1098, - [1099] = 1057, - [1100] = 1000, - [1101] = 1063, - [1102] = 999, - [1103] = 1078, - [1104] = 1075, - [1105] = 1079, - [1106] = 1106, - [1107] = 1082, - [1108] = 998, - [1109] = 1088, - [1110] = 1110, - [1111] = 997, - [1112] = 1082, - [1113] = 1092, - [1114] = 1114, - [1115] = 1115, - [1116] = 1098, - [1117] = 1029, - [1118] = 1024, - [1119] = 1023, - [1120] = 1008, - [1121] = 974, - [1122] = 996, - [1123] = 994, - [1124] = 995, - [1125] = 973, - [1126] = 982, - [1127] = 1127, - [1128] = 988, - [1129] = 1014, - [1130] = 1032, - [1131] = 987, - [1132] = 1091, - [1133] = 1133, - [1134] = 1090, - [1135] = 1064, - [1136] = 975, - [1137] = 1083, - [1138] = 968, - [1139] = 1069, - [1140] = 1106, + [1093] = 1016, + [1094] = 990, + [1095] = 1061, + [1096] = 1036, + [1097] = 1071, + [1098] = 1049, + [1099] = 1099, + [1100] = 1049, + [1101] = 986, + [1102] = 1059, + [1103] = 1103, + [1104] = 1042, + [1105] = 985, + [1106] = 1079, + [1107] = 1009, + [1108] = 1108, + [1109] = 1109, + [1110] = 984, + [1111] = 1111, + [1112] = 968, + [1113] = 1103, + [1114] = 1047, + [1115] = 1046, + [1116] = 1086, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1125, + [1128] = 1126, + [1129] = 1129, + [1130] = 1130, + [1131] = 980, + [1132] = 1088, + [1133] = 1084, + [1134] = 1043, + [1135] = 1090, + [1136] = 1124, + [1137] = 1040, + [1138] = 1053, + [1139] = 1139, + [1140] = 1023, [1141] = 1141, - [1142] = 1114, - [1143] = 1029, - [1144] = 1008, - [1145] = 1060, - [1146] = 1088, - [1147] = 1147, - [1148] = 1148, - [1149] = 1127, - [1150] = 1115, - [1151] = 1016, - [1152] = 1015, - [1153] = 1001, - [1154] = 1033, - [1155] = 977, - [1156] = 1005, - [1157] = 1086, - [1158] = 1096, + [1142] = 1142, + [1143] = 994, + [1144] = 1117, + [1145] = 1056, + [1146] = 1121, + [1147] = 1124, + [1148] = 1129, + [1149] = 1123, + [1150] = 1122, + [1151] = 1121, + [1152] = 1152, + [1153] = 1141, + [1154] = 1139, + [1155] = 1130, + [1156] = 980, + [1157] = 979, + [1158] = 1092, [1159] = 1159, - [1160] = 1160, - [1161] = 976, - [1162] = 985, - [1163] = 991, - [1164] = 993, - [1165] = 1017, - [1166] = 989, - [1167] = 1167, - [1168] = 1168, - [1169] = 1110, + [1160] = 987, + [1161] = 986, + [1162] = 1120, + [1163] = 1109, + [1164] = 1119, + [1165] = 1062, + [1166] = 1118, + [1167] = 1142, + [1168] = 1111, + [1169] = 1036, [1170] = 1170, [1171] = 1171, [1172] = 1172, @@ -3419,12 +3426,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(25) + if (lookahead == '\n') SKIP(24) if (lookahead == '\r') ADVANCE(896); if (lookahead != 0) ADVANCE(896); END_STATE(); case 8: - if (lookahead == '\n') SKIP(24) + if (lookahead == '\n') SKIP(25) if (lookahead == '\r') ADVANCE(896); if (lookahead != 0) ADVANCE(896); END_STATE(); @@ -3798,7 +3805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 24: if (lookahead == '"') ADVANCE(892); if (lookahead == '/') ADVANCE(893); - if (lookahead == '\\') ADVANCE(8); + if (lookahead == '\\') ADVANCE(7); if (lookahead == '{') ADVANCE(867); if (lookahead == '\t' || lookahead == '\n' || @@ -3813,7 +3820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 25: if (lookahead == '\'') ADVANCE(897); if (lookahead == '/') ADVANCE(898); - if (lookahead == '\\') ADVANCE(7); + if (lookahead == '\\') ADVANCE(8); if (lookahead == '{') ADVANCE(868); if (lookahead == '\t' || lookahead == '\n' || @@ -10006,7 +10013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 894: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead == '/') ADVANCE(893); - if (lookahead == '\\') ADVANCE(8); + if (lookahead == '\\') ADVANCE(7); if (lookahead == '{') ADVANCE(867); if (lookahead == '\t' || lookahead == '\n' || @@ -10041,7 +10048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 899: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead == '/') ADVANCE(898); - if (lookahead == '\\') ADVANCE(7); + if (lookahead == '\\') ADVANCE(8); if (lookahead == '{') ADVANCE(868); if (lookahead == '\t' || lookahead == '\n' || @@ -10894,11 +10901,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 45}, [20] = {.lex_state = 45}, [21] = {.lex_state = 45}, - [22] = {.lex_state = 45}, + [22] = {.lex_state = 19}, [23] = {.lex_state = 45}, [24] = {.lex_state = 45}, [25] = {.lex_state = 45}, - [26] = {.lex_state = 19}, + [26] = {.lex_state = 45}, [27] = {.lex_state = 45}, [28] = {.lex_state = 45}, [29] = {.lex_state = 45}, @@ -10914,13 +10921,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 45}, [40] = {.lex_state = 45}, [41] = {.lex_state = 45}, - [42] = {.lex_state = 19}, + [42] = {.lex_state = 45}, [43] = {.lex_state = 45}, [44] = {.lex_state = 45}, [45] = {.lex_state = 45}, [46] = {.lex_state = 45}, [47] = {.lex_state = 45}, - [48] = {.lex_state = 45}, + [48] = {.lex_state = 19}, [49] = {.lex_state = 45}, [50] = {.lex_state = 45}, [51] = {.lex_state = 45}, @@ -10935,8 +10942,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 45}, [61] = {.lex_state = 45}, [62] = {.lex_state = 45}, - [63] = {.lex_state = 414}, - [64] = {.lex_state = 45}, + [63] = {.lex_state = 45}, + [64] = {.lex_state = 414}, [65] = {.lex_state = 45}, [66] = {.lex_state = 414}, [67] = {.lex_state = 411, .external_lex_state = 1}, @@ -10947,23 +10954,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 411}, [73] = {.lex_state = 411}, [74] = {.lex_state = 411}, - [75] = {.lex_state = 21}, - [76] = {.lex_state = 21}, + [75] = {.lex_state = 18}, + [76] = {.lex_state = 18}, [77] = {.lex_state = 21}, [78] = {.lex_state = 21}, - [79] = {.lex_state = 21}, + [79] = {.lex_state = 21, .external_lex_state = 1}, [80] = {.lex_state = 21}, - [81] = {.lex_state = 21, .external_lex_state = 1}, - [82] = {.lex_state = 22}, - [83] = {.lex_state = 18}, - [84] = {.lex_state = 21, .external_lex_state = 1}, + [81] = {.lex_state = 21}, + [82] = {.lex_state = 21, .external_lex_state = 1}, + [83] = {.lex_state = 21}, + [84] = {.lex_state = 21}, [85] = {.lex_state = 21}, - [86] = {.lex_state = 18}, + [86] = {.lex_state = 22}, [87] = {.lex_state = 21}, [88] = {.lex_state = 21}, [89] = {.lex_state = 21}, - [90] = {.lex_state = 21}, - [91] = {.lex_state = 18}, + [90] = {.lex_state = 18}, + [91] = {.lex_state = 21}, [92] = {.lex_state = 18}, [93] = {.lex_state = 18}, [94] = {.lex_state = 18}, @@ -10978,19 +10985,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 18}, [104] = {.lex_state = 18}, [105] = {.lex_state = 18}, - [106] = {.lex_state = 21, .external_lex_state = 1}, - [107] = {.lex_state = 21}, - [108] = {.lex_state = 21, .external_lex_state = 1}, + [106] = {.lex_state = 21}, + [107] = {.lex_state = 21, .external_lex_state = 1}, + [108] = {.lex_state = 21}, [109] = {.lex_state = 18}, - [110] = {.lex_state = 21}, + [110] = {.lex_state = 18}, [111] = {.lex_state = 21, .external_lex_state = 1}, - [112] = {.lex_state = 18}, - [113] = {.lex_state = 21, .external_lex_state = 1}, + [112] = {.lex_state = 21, .external_lex_state = 1}, + [113] = {.lex_state = 18}, [114] = {.lex_state = 18}, [115] = {.lex_state = 18}, - [116] = {.lex_state = 18}, - [117] = {.lex_state = 21}, - [118] = {.lex_state = 411, .external_lex_state = 1}, + [116] = {.lex_state = 21, .external_lex_state = 1}, + [117] = {.lex_state = 18}, + [118] = {.lex_state = 18}, [119] = {.lex_state = 18}, [120] = {.lex_state = 18}, [121] = {.lex_state = 18}, @@ -11004,7 +11011,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [129] = {.lex_state = 18}, [130] = {.lex_state = 18}, [131] = {.lex_state = 18}, - [132] = {.lex_state = 411, .external_lex_state = 1}, + [132] = {.lex_state = 18}, [133] = {.lex_state = 18}, [134] = {.lex_state = 18}, [135] = {.lex_state = 18}, @@ -11024,12 +11031,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [149] = {.lex_state = 18}, [150] = {.lex_state = 18}, [151] = {.lex_state = 18}, - [152] = {.lex_state = 18}, + [152] = {.lex_state = 411, .external_lex_state = 1}, [153] = {.lex_state = 18}, - [154] = {.lex_state = 21}, + [154] = {.lex_state = 18}, [155] = {.lex_state = 18}, [156] = {.lex_state = 18}, - [157] = {.lex_state = 18}, + [157] = {.lex_state = 21}, [158] = {.lex_state = 18}, [159] = {.lex_state = 18}, [160] = {.lex_state = 18}, @@ -11037,21 +11044,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [162] = {.lex_state = 18}, [163] = {.lex_state = 18}, [164] = {.lex_state = 18}, - [165] = {.lex_state = 18}, + [165] = {.lex_state = 411, .external_lex_state = 1}, [166] = {.lex_state = 18}, [167] = {.lex_state = 18}, [168] = {.lex_state = 18}, [169] = {.lex_state = 18}, - [170] = {.lex_state = 18}, - [171] = {.lex_state = 18}, - [172] = {.lex_state = 18}, + [170] = {.lex_state = 21}, + [171] = {.lex_state = 21}, + [172] = {.lex_state = 21, .external_lex_state = 1}, [173] = {.lex_state = 18}, [174] = {.lex_state = 18}, [175] = {.lex_state = 18}, [176] = {.lex_state = 18}, [177] = {.lex_state = 18}, [178] = {.lex_state = 18}, - [179] = {.lex_state = 21}, + [179] = {.lex_state = 18}, [180] = {.lex_state = 18}, [181] = {.lex_state = 18}, [182] = {.lex_state = 18}, @@ -11060,49 +11067,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [185] = {.lex_state = 18}, [186] = {.lex_state = 18}, [187] = {.lex_state = 18}, - [188] = {.lex_state = 18}, + [188] = {.lex_state = 21}, [189] = {.lex_state = 18}, - [190] = {.lex_state = 21}, + [190] = {.lex_state = 18}, [191] = {.lex_state = 18}, - [192] = {.lex_state = 21, .external_lex_state = 1}, + [192] = {.lex_state = 18}, [193] = {.lex_state = 18}, [194] = {.lex_state = 18}, [195] = {.lex_state = 18}, [196] = {.lex_state = 18}, - [197] = {.lex_state = 21}, + [197] = {.lex_state = 26, .external_lex_state = 1}, [198] = {.lex_state = 21}, [199] = {.lex_state = 21}, [200] = {.lex_state = 411}, - [201] = {.lex_state = 411}, - [202] = {.lex_state = 21}, + [201] = {.lex_state = 21}, + [202] = {.lex_state = 411}, [203] = {.lex_state = 21}, - [204] = {.lex_state = 411}, - [205] = {.lex_state = 21}, - [206] = {.lex_state = 21}, - [207] = {.lex_state = 411}, + [204] = {.lex_state = 21}, + [205] = {.lex_state = 411}, + [206] = {.lex_state = 411}, + [207] = {.lex_state = 21}, [208] = {.lex_state = 411}, [209] = {.lex_state = 411}, - [210] = {.lex_state = 21}, - [211] = {.lex_state = 21}, + [210] = {.lex_state = 411}, + [211] = {.lex_state = 411}, [212] = {.lex_state = 21}, [213] = {.lex_state = 411}, [214] = {.lex_state = 21}, [215] = {.lex_state = 411}, [216] = {.lex_state = 21}, - [217] = {.lex_state = 26, .external_lex_state = 1}, - [218] = {.lex_state = 411}, + [217] = {.lex_state = 21}, + [218] = {.lex_state = 21}, [219] = {.lex_state = 411}, [220] = {.lex_state = 21}, - [221] = {.lex_state = 26, .external_lex_state = 1}, + [221] = {.lex_state = 21}, [222] = {.lex_state = 21}, [223] = {.lex_state = 21}, - [224] = {.lex_state = 21}, + [224] = {.lex_state = 411}, [225] = {.lex_state = 21}, [226] = {.lex_state = 21}, [227] = {.lex_state = 21}, [228] = {.lex_state = 21}, - [229] = {.lex_state = 411}, - [230] = {.lex_state = 411}, + [229] = {.lex_state = 21}, + [230] = {.lex_state = 26, .external_lex_state = 1}, [231] = {.lex_state = 21}, [232] = {.lex_state = 21}, [233] = {.lex_state = 411}, @@ -11128,10 +11135,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 26}, [254] = {.lex_state = 411}, [255] = {.lex_state = 411}, - [256] = {.lex_state = 411}, + [256] = {.lex_state = 26}, [257] = {.lex_state = 26}, [258] = {.lex_state = 411}, - [259] = {.lex_state = 26}, + [259] = {.lex_state = 411}, [260] = {.lex_state = 411}, [261] = {.lex_state = 26}, [262] = {.lex_state = 411}, @@ -11154,72 +11161,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 411}, [280] = {.lex_state = 27, .external_lex_state = 1}, [281] = {.lex_state = 27, .external_lex_state = 1}, - [282] = {.lex_state = 27}, + [282] = {.lex_state = 411}, [283] = {.lex_state = 27}, - [284] = {.lex_state = 27}, + [284] = {.lex_state = 411}, [285] = {.lex_state = 27}, [286] = {.lex_state = 27}, - [287] = {.lex_state = 27}, + [287] = {.lex_state = 411}, [288] = {.lex_state = 27}, [289] = {.lex_state = 27}, - [290] = {.lex_state = 411}, - [291] = {.lex_state = 411}, + [290] = {.lex_state = 27}, + [291] = {.lex_state = 27}, [292] = {.lex_state = 27}, [293] = {.lex_state = 27}, [294] = {.lex_state = 27}, - [295] = {.lex_state = 411}, + [295] = {.lex_state = 27}, [296] = {.lex_state = 411}, [297] = {.lex_state = 411}, - [298] = {.lex_state = 27, .external_lex_state = 1}, + [298] = {.lex_state = 411}, [299] = {.lex_state = 411}, - [300] = {.lex_state = 411}, + [300] = {.lex_state = 27, .external_lex_state = 1}, [301] = {.lex_state = 411}, [302] = {.lex_state = 411}, [303] = {.lex_state = 411}, - [304] = {.lex_state = 27, .external_lex_state = 1}, + [304] = {.lex_state = 411}, [305] = {.lex_state = 411}, [306] = {.lex_state = 411}, [307] = {.lex_state = 411}, - [308] = {.lex_state = 26, .external_lex_state = 1}, - [309] = {.lex_state = 411}, + [308] = {.lex_state = 411}, + [309] = {.lex_state = 27, .external_lex_state = 1}, [310] = {.lex_state = 411}, [311] = {.lex_state = 411}, [312] = {.lex_state = 411}, [313] = {.lex_state = 411}, - [314] = {.lex_state = 411}, + [314] = {.lex_state = 27, .external_lex_state = 1}, [315] = {.lex_state = 411}, [316] = {.lex_state = 411}, - [317] = {.lex_state = 411}, + [317] = {.lex_state = 27}, [318] = {.lex_state = 411}, [319] = {.lex_state = 411}, - [320] = {.lex_state = 26, .external_lex_state = 1}, + [320] = {.lex_state = 411}, [321] = {.lex_state = 411}, [322] = {.lex_state = 411}, - [323] = {.lex_state = 411}, + [323] = {.lex_state = 27}, [324] = {.lex_state = 411}, [325] = {.lex_state = 411}, [326] = {.lex_state = 411}, - [327] = {.lex_state = 411}, + [327] = {.lex_state = 26, .external_lex_state = 1}, [328] = {.lex_state = 411}, [329] = {.lex_state = 411}, - [330] = {.lex_state = 411}, - [331] = {.lex_state = 27}, - [332] = {.lex_state = 27, .external_lex_state = 1}, + [330] = {.lex_state = 27}, + [331] = {.lex_state = 411}, + [332] = {.lex_state = 26, .external_lex_state = 1}, [333] = {.lex_state = 411}, - [334] = {.lex_state = 27, .external_lex_state = 1}, + [334] = {.lex_state = 411}, [335] = {.lex_state = 411}, - [336] = {.lex_state = 27}, - [337] = {.lex_state = 27}, + [336] = {.lex_state = 411}, + [337] = {.lex_state = 411}, [338] = {.lex_state = 411}, - [339] = {.lex_state = 411}, + [339] = {.lex_state = 27, .external_lex_state = 1}, [340] = {.lex_state = 27}, - [341] = {.lex_state = 27}, - [342] = {.lex_state = 27, .external_lex_state = 1}, + [341] = {.lex_state = 27, .external_lex_state = 1}, + [342] = {.lex_state = 27}, [343] = {.lex_state = 27}, - [344] = {.lex_state = 27}, - [345] = {.lex_state = 413}, - [346] = {.lex_state = 27}, - [347] = {.lex_state = 413}, + [344] = {.lex_state = 413}, + [345] = {.lex_state = 44}, + [346] = {.lex_state = 44}, + [347] = {.lex_state = 27}, [348] = {.lex_state = 27}, [349] = {.lex_state = 27}, [350] = {.lex_state = 27}, @@ -11229,68 +11236,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [354] = {.lex_state = 27}, [355] = {.lex_state = 27}, [356] = {.lex_state = 27}, - [357] = {.lex_state = 413}, - [358] = {.lex_state = 44}, + [357] = {.lex_state = 44}, + [358] = {.lex_state = 27}, [359] = {.lex_state = 413}, [360] = {.lex_state = 27}, [361] = {.lex_state = 27}, [362] = {.lex_state = 27}, - [363] = {.lex_state = 44}, - [364] = {.lex_state = 27}, + [363] = {.lex_state = 27}, + [364] = {.lex_state = 44}, [365] = {.lex_state = 27}, - [366] = {.lex_state = 44}, - [367] = {.lex_state = 27}, + [366] = {.lex_state = 27}, + [367] = {.lex_state = 44}, [368] = {.lex_state = 27}, [369] = {.lex_state = 413}, - [370] = {.lex_state = 44}, + [370] = {.lex_state = 413}, [371] = {.lex_state = 27}, - [372] = {.lex_state = 44}, - [373] = {.lex_state = 27}, + [372] = {.lex_state = 27}, + [373] = {.lex_state = 413}, [374] = {.lex_state = 27}, [375] = {.lex_state = 27}, - [376] = {.lex_state = 43}, - [377] = {.lex_state = 412}, + [376] = {.lex_state = 412}, + [377] = {.lex_state = 43}, [378] = {.lex_state = 43}, - [379] = {.lex_state = 412}, - [380] = {.lex_state = 412}, - [381] = {.lex_state = 413}, - [382] = {.lex_state = 413}, - [383] = {.lex_state = 412}, - [384] = {.lex_state = 43}, - [385] = {.lex_state = 413}, - [386] = {.lex_state = 413}, - [387] = {.lex_state = 44}, - [388] = {.lex_state = 44}, - [389] = {.lex_state = 412}, - [390] = {.lex_state = 413}, + [379] = {.lex_state = 44}, + [380] = {.lex_state = 18}, + [381] = {.lex_state = 44}, + [382] = {.lex_state = 412}, + [383] = {.lex_state = 413}, + [384] = {.lex_state = 18}, + [385] = {.lex_state = 44}, + [386] = {.lex_state = 18}, + [387] = {.lex_state = 18}, + [388] = {.lex_state = 413}, + [389] = {.lex_state = 18}, + [390] = {.lex_state = 412}, [391] = {.lex_state = 412}, - [392] = {.lex_state = 412}, - [393] = {.lex_state = 44}, - [394] = {.lex_state = 44}, - [395] = {.lex_state = 412}, - [396] = {.lex_state = 43}, - [397] = {.lex_state = 44}, - [398] = {.lex_state = 43}, + [392] = {.lex_state = 413}, + [393] = {.lex_state = 413}, + [394] = {.lex_state = 412}, + [395] = {.lex_state = 43}, + [396] = {.lex_state = 412}, + [397] = {.lex_state = 43}, + [398] = {.lex_state = 44}, [399] = {.lex_state = 44}, - [400] = {.lex_state = 43}, + [400] = {.lex_state = 44}, [401] = {.lex_state = 43}, - [402] = {.lex_state = 18}, - [403] = {.lex_state = 18}, - [404] = {.lex_state = 18}, - [405] = {.lex_state = 18}, - [406] = {.lex_state = 18}, - [407] = {.lex_state = 43}, + [402] = {.lex_state = 43}, + [403] = {.lex_state = 43}, + [404] = {.lex_state = 413}, + [405] = {.lex_state = 43}, + [406] = {.lex_state = 412}, + [407] = {.lex_state = 412}, [408] = {.lex_state = 413}, [409] = {.lex_state = 45}, [410] = {.lex_state = 45}, - [411] = {.lex_state = 414}, + [411] = {.lex_state = 45}, [412] = {.lex_state = 414}, [413] = {.lex_state = 414}, [414] = {.lex_state = 414}, - [415] = {.lex_state = 414}, + [415] = {.lex_state = 45}, [416] = {.lex_state = 414}, [417] = {.lex_state = 414}, - [418] = {.lex_state = 414}, + [418] = {.lex_state = 45}, [419] = {.lex_state = 414}, [420] = {.lex_state = 414}, [421] = {.lex_state = 414}, @@ -11298,7 +11305,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [423] = {.lex_state = 414}, [424] = {.lex_state = 414}, [425] = {.lex_state = 414}, - [426] = {.lex_state = 45}, + [426] = {.lex_state = 414}, [427] = {.lex_state = 414}, [428] = {.lex_state = 414}, [429] = {.lex_state = 414}, @@ -11309,10 +11316,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [434] = {.lex_state = 414}, [435] = {.lex_state = 414}, [436] = {.lex_state = 414}, - [437] = {.lex_state = 414}, + [437] = {.lex_state = 45}, [438] = {.lex_state = 414}, [439] = {.lex_state = 414}, - [440] = {.lex_state = 414}, + [440] = {.lex_state = 45}, [441] = {.lex_state = 414}, [442] = {.lex_state = 414}, [443] = {.lex_state = 414}, @@ -11321,51 +11328,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [446] = {.lex_state = 414}, [447] = {.lex_state = 414}, [448] = {.lex_state = 414}, - [449] = {.lex_state = 414}, + [449] = {.lex_state = 45}, [450] = {.lex_state = 414}, [451] = {.lex_state = 414}, [452] = {.lex_state = 414}, [453] = {.lex_state = 45}, [454] = {.lex_state = 45}, - [455] = {.lex_state = 45}, - [456] = {.lex_state = 45}, - [457] = {.lex_state = 45}, - [458] = {.lex_state = 45}, - [459] = {.lex_state = 45}, - [460] = {.lex_state = 45}, - [461] = {.lex_state = 414}, + [455] = {.lex_state = 414}, + [456] = {.lex_state = 414}, + [457] = {.lex_state = 414}, + [458] = {.lex_state = 414}, + [459] = {.lex_state = 414}, + [460] = {.lex_state = 414}, + [461] = {.lex_state = 45}, [462] = {.lex_state = 45}, - [463] = {.lex_state = 414}, - [464] = {.lex_state = 45}, + [463] = {.lex_state = 45}, + [464] = {.lex_state = 414}, [465] = {.lex_state = 414}, [466] = {.lex_state = 414}, - [467] = {.lex_state = 45}, + [467] = {.lex_state = 414}, [468] = {.lex_state = 45}, - [469] = {.lex_state = 45}, + [469] = {.lex_state = 414}, [470] = {.lex_state = 414}, - [471] = {.lex_state = 45}, - [472] = {.lex_state = 45}, - [473] = {.lex_state = 414}, + [471] = {.lex_state = 414}, + [472] = {.lex_state = 414}, + [473] = {.lex_state = 45}, [474] = {.lex_state = 414}, [475] = {.lex_state = 414}, [476] = {.lex_state = 414}, - [477] = {.lex_state = 414}, - [478] = {.lex_state = 45}, + [477] = {.lex_state = 45}, + [478] = {.lex_state = 414}, [479] = {.lex_state = 414}, [480] = {.lex_state = 414}, - [481] = {.lex_state = 45}, + [481] = {.lex_state = 414}, [482] = {.lex_state = 45}, - [483] = {.lex_state = 414}, - [484] = {.lex_state = 414}, + [483] = {.lex_state = 45}, + [484] = {.lex_state = 45}, [485] = {.lex_state = 414}, [486] = {.lex_state = 45}, - [487] = {.lex_state = 45}, + [487] = {.lex_state = 414}, [488] = {.lex_state = 45}, - [489] = {.lex_state = 45}, + [489] = {.lex_state = 414}, [490] = {.lex_state = 414}, [491] = {.lex_state = 45}, - [492] = {.lex_state = 45}, - [493] = {.lex_state = 414}, + [492] = {.lex_state = 414}, + [493] = {.lex_state = 45}, [494] = {.lex_state = 414}, [495] = {.lex_state = 45}, [496] = {.lex_state = 45}, @@ -11375,45 +11382,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 414}, [501] = {.lex_state = 45}, [502] = {.lex_state = 45}, - [503] = {.lex_state = 414}, + [503] = {.lex_state = 45}, [504] = {.lex_state = 414}, - [505] = {.lex_state = 414}, + [505] = {.lex_state = 45}, [506] = {.lex_state = 414}, - [507] = {.lex_state = 45}, + [507] = {.lex_state = 414}, [508] = {.lex_state = 45}, - [509] = {.lex_state = 414}, - [510] = {.lex_state = 45}, - [511] = {.lex_state = 414}, - [512] = {.lex_state = 45}, + [509] = {.lex_state = 45}, + [510] = {.lex_state = 414}, + [511] = {.lex_state = 45}, + [512] = {.lex_state = 414}, [513] = {.lex_state = 45}, [514] = {.lex_state = 45}, - [515] = {.lex_state = 414}, - [516] = {.lex_state = 45}, + [515] = {.lex_state = 45}, + [516] = {.lex_state = 414}, [517] = {.lex_state = 414}, - [518] = {.lex_state = 414}, - [519] = {.lex_state = 45}, - [520] = {.lex_state = 414}, - [521] = {.lex_state = 45}, + [518] = {.lex_state = 45}, + [519] = {.lex_state = 414}, + [520] = {.lex_state = 45}, + [521] = {.lex_state = 414}, [522] = {.lex_state = 45}, [523] = {.lex_state = 45}, [524] = {.lex_state = 45}, - [525] = {.lex_state = 414}, + [525] = {.lex_state = 45}, [526] = {.lex_state = 414}, - [527] = {.lex_state = 45}, + [527] = {.lex_state = 414}, [528] = {.lex_state = 414}, - [529] = {.lex_state = 45}, + [529] = {.lex_state = 414}, [530] = {.lex_state = 45}, - [531] = {.lex_state = 414}, - [532] = {.lex_state = 414}, + [531] = {.lex_state = 45}, + [532] = {.lex_state = 45}, [533] = {.lex_state = 414}, - [534] = {.lex_state = 45}, - [535] = {.lex_state = 414}, - [536] = {.lex_state = 45}, + [534] = {.lex_state = 414}, + [535] = {.lex_state = 45}, + [536] = {.lex_state = 414}, [537] = {.lex_state = 45}, - [538] = {.lex_state = 414}, - [539] = {.lex_state = 45}, + [538] = {.lex_state = 45}, + [539] = {.lex_state = 414}, [540] = {.lex_state = 45}, - [541] = {.lex_state = 45}, + [541] = {.lex_state = 414}, [542] = {.lex_state = 414}, [543] = {.lex_state = 45}, [544] = {.lex_state = 45}, @@ -11422,10 +11429,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 45}, [548] = {.lex_state = 45}, [549] = {.lex_state = 45}, - [550] = {.lex_state = 414}, + [550] = {.lex_state = 45}, [551] = {.lex_state = 45}, - [552] = {.lex_state = 45}, - [553] = {.lex_state = 45}, + [552] = {.lex_state = 414}, + [553] = {.lex_state = 414}, [554] = {.lex_state = 45}, [555] = {.lex_state = 45}, [556] = {.lex_state = 45}, @@ -11440,33 +11447,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 45}, [566] = {.lex_state = 45}, [567] = {.lex_state = 45}, - [568] = {.lex_state = 414}, + [568] = {.lex_state = 45}, [569] = {.lex_state = 45}, [570] = {.lex_state = 45}, [571] = {.lex_state = 45}, - [572] = {.lex_state = 45}, + [572] = {.lex_state = 414}, [573] = {.lex_state = 414}, - [574] = {.lex_state = 414}, + [574] = {.lex_state = 45}, [575] = {.lex_state = 414}, [576] = {.lex_state = 45}, [577] = {.lex_state = 45}, [578] = {.lex_state = 45}, - [579] = {.lex_state = 414}, - [580] = {.lex_state = 414}, - [581] = {.lex_state = 45}, + [579] = {.lex_state = 45}, + [580] = {.lex_state = 45}, + [581] = {.lex_state = 414}, [582] = {.lex_state = 414}, [583] = {.lex_state = 45}, - [584] = {.lex_state = 45}, + [584] = {.lex_state = 414}, [585] = {.lex_state = 45}, - [586] = {.lex_state = 414}, + [586] = {.lex_state = 45}, [587] = {.lex_state = 45}, [588] = {.lex_state = 45}, [589] = {.lex_state = 45}, [590] = {.lex_state = 45}, [591] = {.lex_state = 45}, - [592] = {.lex_state = 414}, - [593] = {.lex_state = 414}, - [594] = {.lex_state = 414}, + [592] = {.lex_state = 45}, + [593] = {.lex_state = 45}, + [594] = {.lex_state = 45}, [595] = {.lex_state = 414}, [596] = {.lex_state = 414}, [597] = {.lex_state = 411}, @@ -11476,12 +11483,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [601] = {.lex_state = 411}, [602] = {.lex_state = 411}, [603] = {.lex_state = 411}, - [604] = {.lex_state = 47}, - [605] = {.lex_state = 411}, + [604] = {.lex_state = 411}, + [605] = {.lex_state = 47}, [606] = {.lex_state = 411}, - [607] = {.lex_state = 411}, - [608] = {.lex_state = 47}, - [609] = {.lex_state = 411, .external_lex_state = 1}, + [607] = {.lex_state = 47}, + [608] = {.lex_state = 411, .external_lex_state = 1}, + [609] = {.lex_state = 411}, [610] = {.lex_state = 411}, [611] = {.lex_state = 411}, [612] = {.lex_state = 411}, @@ -11489,10 +11496,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [614] = {.lex_state = 411}, [615] = {.lex_state = 411}, [616] = {.lex_state = 411}, - [617] = {.lex_state = 411}, + [617] = {.lex_state = 411, .external_lex_state = 1}, [618] = {.lex_state = 411}, [619] = {.lex_state = 411}, - [620] = {.lex_state = 411, .external_lex_state = 1}, + [620] = {.lex_state = 411}, [621] = {.lex_state = 411, .external_lex_state = 1}, [622] = {.lex_state = 411}, [623] = {.lex_state = 411}, @@ -11540,39 +11547,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [665] = {.lex_state = 40}, [666] = {.lex_state = 40}, [667] = {.lex_state = 40}, - [668] = {.lex_state = 411}, - [669] = {.lex_state = 411}, - [670] = {.lex_state = 40}, + [668] = {.lex_state = 40}, + [669] = {.lex_state = 40}, + [670] = {.lex_state = 411}, [671] = {.lex_state = 40}, - [672] = {.lex_state = 411, .external_lex_state = 1}, + [672] = {.lex_state = 411}, [673] = {.lex_state = 411}, [674] = {.lex_state = 411}, [675] = {.lex_state = 411}, [676] = {.lex_state = 411}, - [677] = {.lex_state = 40}, - [678] = {.lex_state = 48}, + [677] = {.lex_state = 411, .external_lex_state = 1}, + [678] = {.lex_state = 411}, [679] = {.lex_state = 48}, [680] = {.lex_state = 411}, [681] = {.lex_state = 411, .external_lex_state = 1}, - [682] = {.lex_state = 411}, + [682] = {.lex_state = 48}, [683] = {.lex_state = 411}, - [684] = {.lex_state = 411}, + [684] = {.lex_state = 50}, [685] = {.lex_state = 411}, [686] = {.lex_state = 411}, [687] = {.lex_state = 411}, [688] = {.lex_state = 411}, - [689] = {.lex_state = 50}, + [689] = {.lex_state = 411}, [690] = {.lex_state = 411}, [691] = {.lex_state = 411}, - [692] = {.lex_state = 411, .external_lex_state = 1}, + [692] = {.lex_state = 411}, [693] = {.lex_state = 411}, [694] = {.lex_state = 411}, - [695] = {.lex_state = 411}, - [696] = {.lex_state = 50}, + [695] = {.lex_state = 411, .external_lex_state = 1}, + [696] = {.lex_state = 411}, [697] = {.lex_state = 411}, [698] = {.lex_state = 411}, [699] = {.lex_state = 411}, - [700] = {.lex_state = 411}, + [700] = {.lex_state = 50}, [701] = {.lex_state = 411}, [702] = {.lex_state = 411}, [703] = {.lex_state = 411}, @@ -11584,115 +11591,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [709] = {.lex_state = 411}, [710] = {.lex_state = 17}, [711] = {.lex_state = 17}, - [712] = {.lex_state = 411}, - [713] = {.lex_state = 411}, + [712] = {.lex_state = 17}, + [713] = {.lex_state = 17}, [714] = {.lex_state = 411}, [715] = {.lex_state = 411}, - [716] = {.lex_state = 17}, + [716] = {.lex_state = 411}, [717] = {.lex_state = 17}, [718] = {.lex_state = 411}, - [719] = {.lex_state = 411}, + [719] = {.lex_state = 17}, [720] = {.lex_state = 17}, [721] = {.lex_state = 17}, - [722] = {.lex_state = 17}, + [722] = {.lex_state = 411}, [723] = {.lex_state = 17}, [724] = {.lex_state = 17}, - [725] = {.lex_state = 17}, - [726] = {.lex_state = 17}, + [725] = {.lex_state = 411}, + [726] = {.lex_state = 411}, [727] = {.lex_state = 411}, [728] = {.lex_state = 411}, - [729] = {.lex_state = 17}, - [730] = {.lex_state = 411}, - [731] = {.lex_state = 411}, - [732] = {.lex_state = 49}, - [733] = {.lex_state = 411}, - [734] = {.lex_state = 49}, - [735] = {.lex_state = 411}, - [736] = {.lex_state = 411}, + [729] = {.lex_state = 411}, + [730] = {.lex_state = 17}, + [731] = {.lex_state = 17}, + [732] = {.lex_state = 411}, + [733] = {.lex_state = 49}, + [734] = {.lex_state = 411}, + [735] = {.lex_state = 49}, + [736] = {.lex_state = 41}, [737] = {.lex_state = 41}, - [738] = {.lex_state = 41}, - [739] = {.lex_state = 411}, - [740] = {.lex_state = 411}, + [738] = {.lex_state = 411}, + [739] = {.lex_state = 17}, + [740] = {.lex_state = 41}, [741] = {.lex_state = 411}, [742] = {.lex_state = 41}, [743] = {.lex_state = 41}, [744] = {.lex_state = 411}, - [745] = {.lex_state = 17}, + [745] = {.lex_state = 411}, [746] = {.lex_state = 411}, [747] = {.lex_state = 411}, [748] = {.lex_state = 411}, [749] = {.lex_state = 411}, - [750] = {.lex_state = 17}, - [751] = {.lex_state = 41}, - [752] = {.lex_state = 411}, - [753] = {.lex_state = 17}, + [750] = {.lex_state = 411}, + [751] = {.lex_state = 17}, + [752] = {.lex_state = 17}, + [753] = {.lex_state = 411}, [754] = {.lex_state = 17}, [755] = {.lex_state = 411}, - [756] = {.lex_state = 25}, - [757] = {.lex_state = 25}, - [758] = {.lex_state = 25}, + [756] = {.lex_state = 411}, + [757] = {.lex_state = 17}, + [758] = {.lex_state = 24}, [759] = {.lex_state = 24}, - [760] = {.lex_state = 25}, + [760] = {.lex_state = 411}, [761] = {.lex_state = 17}, - [762] = {.lex_state = 24}, - [763] = {.lex_state = 17}, - [764] = {.lex_state = 17}, + [762] = {.lex_state = 17}, + [763] = {.lex_state = 411}, + [764] = {.lex_state = 24}, [765] = {.lex_state = 17}, - [766] = {.lex_state = 17}, + [766] = {.lex_state = 411}, [767] = {.lex_state = 17}, - [768] = {.lex_state = 17}, - [769] = {.lex_state = 411}, - [770] = {.lex_state = 25}, - [771] = {.lex_state = 17}, - [772] = {.lex_state = 24}, - [773] = {.lex_state = 411}, - [774] = {.lex_state = 17}, - [775] = {.lex_state = 24}, - [776] = {.lex_state = 24}, - [777] = {.lex_state = 411}, - [778] = {.lex_state = 411}, - [779] = {.lex_state = 24}, - [780] = {.lex_state = 17}, - [781] = {.lex_state = 411}, - [782] = {.lex_state = 24}, - [783] = {.lex_state = 24}, - [784] = {.lex_state = 25}, - [785] = {.lex_state = 411}, - [786] = {.lex_state = 25}, - [787] = {.lex_state = 411}, + [768] = {.lex_state = 25}, + [769] = {.lex_state = 24}, + [770] = {.lex_state = 411}, + [771] = {.lex_state = 24}, + [772] = {.lex_state = 25}, + [773] = {.lex_state = 25}, + [774] = {.lex_state = 411}, + [775] = {.lex_state = 17}, + [776] = {.lex_state = 17}, + [777] = {.lex_state = 17}, + [778] = {.lex_state = 17}, + [779] = {.lex_state = 411}, + [780] = {.lex_state = 25}, + [781] = {.lex_state = 24}, + [782] = {.lex_state = 25}, + [783] = {.lex_state = 411}, + [784] = {.lex_state = 17}, + [785] = {.lex_state = 25}, + [786] = {.lex_state = 24}, + [787] = {.lex_state = 25}, [788] = {.lex_state = 17}, [789] = {.lex_state = 24}, - [790] = {.lex_state = 411}, - [791] = {.lex_state = 15}, + [790] = {.lex_state = 24}, + [791] = {.lex_state = 17}, [792] = {.lex_state = 411}, - [793] = {.lex_state = 17}, + [793] = {.lex_state = 46}, [794] = {.lex_state = 411}, - [795] = {.lex_state = 411}, + [795] = {.lex_state = 24}, [796] = {.lex_state = 411}, [797] = {.lex_state = 411}, [798] = {.lex_state = 411}, [799] = {.lex_state = 411}, - [800] = {.lex_state = 411, .external_lex_state = 1}, - [801] = {.lex_state = 46}, - [802] = {.lex_state = 15}, - [803] = {.lex_state = 411}, - [804] = {.lex_state = 17}, - [805] = {.lex_state = 46}, - [806] = {.lex_state = 41}, + [800] = {.lex_state = 17}, + [801] = {.lex_state = 411}, + [802] = {.lex_state = 411}, + [803] = {.lex_state = 49}, + [804] = {.lex_state = 411}, + [805] = {.lex_state = 15}, + [806] = {.lex_state = 17}, [807] = {.lex_state = 411}, - [808] = {.lex_state = 411}, - [809] = {.lex_state = 17}, - [810] = {.lex_state = 15}, + [808] = {.lex_state = 25}, + [809] = {.lex_state = 15}, + [810] = {.lex_state = 411}, [811] = {.lex_state = 411}, - [812] = {.lex_state = 411}, - [813] = {.lex_state = 411}, - [814] = {.lex_state = 411, .external_lex_state = 1}, - [815] = {.lex_state = 24}, - [816] = {.lex_state = 411}, - [817] = {.lex_state = 411}, - [818] = {.lex_state = 15}, + [812] = {.lex_state = 15}, + [813] = {.lex_state = 17}, + [814] = {.lex_state = 411}, + [815] = {.lex_state = 411}, + [816] = {.lex_state = 411, .external_lex_state = 1}, + [817] = {.lex_state = 46}, + [818] = {.lex_state = 411}, [819] = {.lex_state = 411}, - [820] = {.lex_state = 17}, + [820] = {.lex_state = 411}, [821] = {.lex_state = 411}, [822] = {.lex_state = 411}, [823] = {.lex_state = 411}, @@ -11703,92 +11710,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 411}, [829] = {.lex_state = 411}, [830] = {.lex_state = 411}, - [831] = {.lex_state = 411}, - [832] = {.lex_state = 411, .external_lex_state = 1}, + [831] = {.lex_state = 49}, + [832] = {.lex_state = 17}, [833] = {.lex_state = 411}, [834] = {.lex_state = 411}, [835] = {.lex_state = 411}, - [836] = {.lex_state = 49}, - [837] = {.lex_state = 411}, - [838] = {.lex_state = 411, .external_lex_state = 1}, - [839] = {.lex_state = 17}, - [840] = {.lex_state = 411}, - [841] = {.lex_state = 25}, - [842] = {.lex_state = 17}, + [836] = {.lex_state = 411, .external_lex_state = 1}, + [837] = {.lex_state = 17}, + [838] = {.lex_state = 411}, + [839] = {.lex_state = 411}, + [840] = {.lex_state = 17}, + [841] = {.lex_state = 41}, + [842] = {.lex_state = 411}, [843] = {.lex_state = 411}, - [844] = {.lex_state = 411}, - [845] = {.lex_state = 49}, - [846] = {.lex_state = 411}, + [844] = {.lex_state = 411, .external_lex_state = 1}, + [845] = {.lex_state = 411}, + [846] = {.lex_state = 15}, [847] = {.lex_state = 49}, [848] = {.lex_state = 411}, - [849] = {.lex_state = 411}, + [849] = {.lex_state = 411, .external_lex_state = 1}, [850] = {.lex_state = 411}, [851] = {.lex_state = 411}, [852] = {.lex_state = 411}, - [853] = {.lex_state = 17}, + [853] = {.lex_state = 15}, [854] = {.lex_state = 411}, - [855] = {.lex_state = 17}, + [855] = {.lex_state = 411}, [856] = {.lex_state = 411}, [857] = {.lex_state = 411}, [858] = {.lex_state = 411}, - [859] = {.lex_state = 411}, - [860] = {.lex_state = 15}, - [861] = {.lex_state = 411}, - [862] = {.lex_state = 411}, - [863] = {.lex_state = 411}, - [864] = {.lex_state = 411}, + [859] = {.lex_state = 17}, + [860] = {.lex_state = 26}, + [861] = {.lex_state = 17}, + [862] = {.lex_state = 26}, + [863] = {.lex_state = 17}, + [864] = {.lex_state = 17}, [865] = {.lex_state = 411}, [866] = {.lex_state = 411}, [867] = {.lex_state = 411}, - [868] = {.lex_state = 17}, - [869] = {.lex_state = 411}, - [870] = {.lex_state = 26}, - [871] = {.lex_state = 17}, - [872] = {.lex_state = 411}, + [868] = {.lex_state = 26}, + [869] = {.lex_state = 17}, + [870] = {.lex_state = 411}, + [871] = {.lex_state = 411}, + [872] = {.lex_state = 26}, [873] = {.lex_state = 17}, - [874] = {.lex_state = 17}, + [874] = {.lex_state = 411}, [875] = {.lex_state = 411}, - [876] = {.lex_state = 40}, + [876] = {.lex_state = 411}, [877] = {.lex_state = 411}, - [878] = {.lex_state = 411}, + [878] = {.lex_state = 17}, [879] = {.lex_state = 411}, - [880] = {.lex_state = 411}, - [881] = {.lex_state = 411}, + [880] = {.lex_state = 26}, + [881] = {.lex_state = 17}, [882] = {.lex_state = 411}, - [883] = {.lex_state = 411}, + [883] = {.lex_state = 40}, [884] = {.lex_state = 411}, - [885] = {.lex_state = 411}, - [886] = {.lex_state = 411}, - [887] = {.lex_state = 411}, + [885] = {.lex_state = 40}, + [886] = {.lex_state = 40}, + [887] = {.lex_state = 15}, [888] = {.lex_state = 411}, - [889] = {.lex_state = 26}, - [890] = {.lex_state = 411}, - [891] = {.lex_state = 26}, + [889] = {.lex_state = 17}, + [890] = {.lex_state = 26}, + [891] = {.lex_state = 411}, [892] = {.lex_state = 411}, [893] = {.lex_state = 411}, [894] = {.lex_state = 411}, [895] = {.lex_state = 411}, [896] = {.lex_state = 411}, - [897] = {.lex_state = 411}, + [897] = {.lex_state = 17}, [898] = {.lex_state = 411}, - [899] = {.lex_state = 17}, + [899] = {.lex_state = 411}, [900] = {.lex_state = 411}, [901] = {.lex_state = 411}, [902] = {.lex_state = 411}, - [903] = {.lex_state = 17}, - [904] = {.lex_state = 411}, + [903] = {.lex_state = 411}, + [904] = {.lex_state = 40}, [905] = {.lex_state = 411}, [906] = {.lex_state = 411}, - [907] = {.lex_state = 411}, + [907] = {.lex_state = 40}, [908] = {.lex_state = 411}, [909] = {.lex_state = 411}, - [910] = {.lex_state = 17}, - [911] = {.lex_state = 40}, + [910] = {.lex_state = 411}, + [911] = {.lex_state = 17}, [912] = {.lex_state = 411}, - [913] = {.lex_state = 17}, + [913] = {.lex_state = 411}, [914] = {.lex_state = 40}, - [915] = {.lex_state = 411}, - [916] = {.lex_state = 40}, + [915] = {.lex_state = 17}, + [916] = {.lex_state = 411}, [917] = {.lex_state = 17}, [918] = {.lex_state = 411}, [919] = {.lex_state = 411}, @@ -11798,146 +11805,146 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 411}, [924] = {.lex_state = 411}, [925] = {.lex_state = 411}, - [926] = {.lex_state = 26}, + [926] = {.lex_state = 411}, [927] = {.lex_state = 411}, [928] = {.lex_state = 411}, - [929] = {.lex_state = 17}, + [929] = {.lex_state = 411}, [930] = {.lex_state = 411}, - [931] = {.lex_state = 15}, - [932] = {.lex_state = 40}, + [931] = {.lex_state = 411}, + [932] = {.lex_state = 411}, [933] = {.lex_state = 411}, [934] = {.lex_state = 411}, [935] = {.lex_state = 411}, [936] = {.lex_state = 411}, [937] = {.lex_state = 411}, - [938] = {.lex_state = 17}, + [938] = {.lex_state = 411}, [939] = {.lex_state = 411}, [940] = {.lex_state = 411}, [941] = {.lex_state = 411}, - [942] = {.lex_state = 411}, + [942] = {.lex_state = 17}, [943] = {.lex_state = 411}, [944] = {.lex_state = 411}, [945] = {.lex_state = 411}, [946] = {.lex_state = 411}, [947] = {.lex_state = 411}, - [948] = {.lex_state = 15}, - [949] = {.lex_state = 17}, - [950] = {.lex_state = 40}, - [951] = {.lex_state = 26}, + [948] = {.lex_state = 411}, + [949] = {.lex_state = 411}, + [950] = {.lex_state = 411}, + [951] = {.lex_state = 411}, [952] = {.lex_state = 411}, - [953] = {.lex_state = 26}, - [954] = {.lex_state = 17}, - [955] = {.lex_state = 17}, + [953] = {.lex_state = 411}, + [954] = {.lex_state = 411}, + [955] = {.lex_state = 411}, [956] = {.lex_state = 411}, [957] = {.lex_state = 411}, - [958] = {.lex_state = 17}, - [959] = {.lex_state = 411}, + [958] = {.lex_state = 411}, + [959] = {.lex_state = 17}, [960] = {.lex_state = 411}, - [961] = {.lex_state = 411}, - [962] = {.lex_state = 411}, - [963] = {.lex_state = 411}, + [961] = {.lex_state = 17}, + [962] = {.lex_state = 15}, + [963] = {.lex_state = 17}, [964] = {.lex_state = 411}, - [965] = {.lex_state = 17}, + [965] = {.lex_state = 411}, [966] = {.lex_state = 411}, [967] = {.lex_state = 411}, [968] = {.lex_state = 411}, [969] = {.lex_state = 411}, [970] = {.lex_state = 411}, - [971] = {.lex_state = 411}, + [971] = {.lex_state = 17}, [972] = {.lex_state = 17}, [973] = {.lex_state = 411}, [974] = {.lex_state = 411}, [975] = {.lex_state = 411}, [976] = {.lex_state = 411}, [977] = {.lex_state = 411}, - [978] = {.lex_state = 17}, - [979] = {.lex_state = 17}, + [978] = {.lex_state = 411}, + [979] = {.lex_state = 411}, [980] = {.lex_state = 411}, - [981] = {.lex_state = 17}, - [982] = {.lex_state = 411}, - [983] = {.lex_state = 411}, - [984] = {.lex_state = 17}, - [985] = {.lex_state = 411}, - [986] = {.lex_state = 40}, + [981] = {.lex_state = 411}, + [982] = {.lex_state = 17}, + [983] = {.lex_state = 17}, + [984] = {.lex_state = 411}, + [985] = {.lex_state = 17}, + [986] = {.lex_state = 411}, [987] = {.lex_state = 411}, - [988] = {.lex_state = 411}, - [989] = {.lex_state = 411}, - [990] = {.lex_state = 17}, + [988] = {.lex_state = 17}, + [989] = {.lex_state = 40}, + [990] = {.lex_state = 411}, [991] = {.lex_state = 411}, [992] = {.lex_state = 411}, [993] = {.lex_state = 411}, - [994] = {.lex_state = 17}, + [994] = {.lex_state = 411}, [995] = {.lex_state = 411}, - [996] = {.lex_state = 17}, + [996] = {.lex_state = 411}, [997] = {.lex_state = 411}, [998] = {.lex_state = 411}, [999] = {.lex_state = 411}, - [1000] = {.lex_state = 40}, + [1000] = {.lex_state = 411}, [1001] = {.lex_state = 411}, [1002] = {.lex_state = 411}, [1003] = {.lex_state = 411}, [1004] = {.lex_state = 411}, - [1005] = {.lex_state = 17}, + [1005] = {.lex_state = 40}, [1006] = {.lex_state = 411}, [1007] = {.lex_state = 411}, - [1008] = {.lex_state = 17}, - [1009] = {.lex_state = 17}, + [1008] = {.lex_state = 411}, + [1009] = {.lex_state = 411}, [1010] = {.lex_state = 411}, [1011] = {.lex_state = 411}, [1012] = {.lex_state = 411}, [1013] = {.lex_state = 411}, [1014] = {.lex_state = 411}, [1015] = {.lex_state = 17}, - [1016] = {.lex_state = 17}, + [1016] = {.lex_state = 411}, [1017] = {.lex_state = 411}, - [1018] = {.lex_state = 411}, + [1018] = {.lex_state = 17}, [1019] = {.lex_state = 411}, [1020] = {.lex_state = 411}, - [1021] = {.lex_state = 40}, + [1021] = {.lex_state = 411}, [1022] = {.lex_state = 411}, - [1023] = {.lex_state = 17}, - [1024] = {.lex_state = 17}, + [1023] = {.lex_state = 411}, + [1024] = {.lex_state = 40}, [1025] = {.lex_state = 411}, [1026] = {.lex_state = 411}, [1027] = {.lex_state = 411}, [1028] = {.lex_state = 411}, [1029] = {.lex_state = 411}, [1030] = {.lex_state = 411}, - [1031] = {.lex_state = 40}, + [1031] = {.lex_state = 411}, [1032] = {.lex_state = 411}, [1033] = {.lex_state = 411}, - [1034] = {.lex_state = 411}, - [1035] = {.lex_state = 40}, - [1036] = {.lex_state = 40}, - [1037] = {.lex_state = 17}, + [1034] = {.lex_state = 40}, + [1035] = {.lex_state = 411}, + [1036] = {.lex_state = 411}, + [1037] = {.lex_state = 40}, [1038] = {.lex_state = 411}, [1039] = {.lex_state = 411}, - [1040] = {.lex_state = 411}, + [1040] = {.lex_state = 17}, [1041] = {.lex_state = 411}, - [1042] = {.lex_state = 29}, - [1043] = {.lex_state = 17}, - [1044] = {.lex_state = 17}, - [1045] = {.lex_state = 17}, + [1042] = {.lex_state = 411}, + [1043] = {.lex_state = 411}, + [1044] = {.lex_state = 411}, + [1045] = {.lex_state = 411}, [1046] = {.lex_state = 411}, - [1047] = {.lex_state = 411}, + [1047] = {.lex_state = 17}, [1048] = {.lex_state = 411}, - [1049] = {.lex_state = 411}, - [1050] = {.lex_state = 411}, + [1049] = {.lex_state = 17}, + [1050] = {.lex_state = 17}, [1051] = {.lex_state = 411}, [1052] = {.lex_state = 411}, [1053] = {.lex_state = 411}, [1054] = {.lex_state = 411}, [1055] = {.lex_state = 411}, [1056] = {.lex_state = 411}, - [1057] = {.lex_state = 17}, - [1058] = {.lex_state = 17}, + [1057] = {.lex_state = 411}, + [1058] = {.lex_state = 411}, [1059] = {.lex_state = 17}, [1060] = {.lex_state = 17}, [1061] = {.lex_state = 411}, - [1062] = {.lex_state = 411}, - [1063] = {.lex_state = 411}, + [1062] = {.lex_state = 17}, + [1063] = {.lex_state = 17}, [1064] = {.lex_state = 411}, - [1065] = {.lex_state = 17}, + [1065] = {.lex_state = 411}, [1066] = {.lex_state = 411}, [1067] = {.lex_state = 411}, [1068] = {.lex_state = 411}, @@ -11947,102 +11954,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1072] = {.lex_state = 411}, [1073] = {.lex_state = 411}, [1074] = {.lex_state = 17}, - [1075] = {.lex_state = 411}, - [1076] = {.lex_state = 411}, - [1077] = {.lex_state = 411}, + [1075] = {.lex_state = 40}, + [1076] = {.lex_state = 17}, + [1077] = {.lex_state = 17}, [1078] = {.lex_state = 411}, [1079] = {.lex_state = 411}, [1080] = {.lex_state = 411}, [1081] = {.lex_state = 411}, [1082] = {.lex_state = 411}, - [1083] = {.lex_state = 411}, + [1083] = {.lex_state = 40}, [1084] = {.lex_state = 411}, [1085] = {.lex_state = 411}, [1086] = {.lex_state = 411}, - [1087] = {.lex_state = 17}, + [1087] = {.lex_state = 411}, [1088] = {.lex_state = 411}, - [1089] = {.lex_state = 17}, + [1089] = {.lex_state = 411}, [1090] = {.lex_state = 411}, [1091] = {.lex_state = 411}, - [1092] = {.lex_state = 411}, + [1092] = {.lex_state = 17}, [1093] = {.lex_state = 411}, [1094] = {.lex_state = 411}, - [1095] = {.lex_state = 17}, + [1095] = {.lex_state = 411}, [1096] = {.lex_state = 411}, [1097] = {.lex_state = 411}, - [1098] = {.lex_state = 411}, - [1099] = {.lex_state = 17}, - [1100] = {.lex_state = 40}, + [1098] = {.lex_state = 17}, + [1099] = {.lex_state = 29}, + [1100] = {.lex_state = 17}, [1101] = {.lex_state = 411}, - [1102] = {.lex_state = 411}, + [1102] = {.lex_state = 17}, [1103] = {.lex_state = 411}, [1104] = {.lex_state = 411}, - [1105] = {.lex_state = 411}, + [1105] = {.lex_state = 17}, [1106] = {.lex_state = 411}, [1107] = {.lex_state = 411}, - [1108] = {.lex_state = 411}, - [1109] = {.lex_state = 411}, - [1110] = {.lex_state = 17}, + [1108] = {.lex_state = 17}, + [1109] = {.lex_state = 17}, + [1110] = {.lex_state = 411}, [1111] = {.lex_state = 411}, [1112] = {.lex_state = 411}, [1113] = {.lex_state = 411}, - [1114] = {.lex_state = 411}, - [1115] = {.lex_state = 17}, + [1114] = {.lex_state = 17}, + [1115] = {.lex_state = 411}, [1116] = {.lex_state = 411}, [1117] = {.lex_state = 411}, [1118] = {.lex_state = 17}, [1119] = {.lex_state = 17}, - [1120] = {.lex_state = 17}, + [1120] = {.lex_state = 411}, [1121] = {.lex_state = 411}, [1122] = {.lex_state = 17}, [1123] = {.lex_state = 17}, - [1124] = {.lex_state = 411}, - [1125] = {.lex_state = 411}, - [1126] = {.lex_state = 411}, + [1124] = {.lex_state = 17}, + [1125] = {.lex_state = 17}, + [1126] = {.lex_state = 17}, [1127] = {.lex_state = 17}, - [1128] = {.lex_state = 411}, + [1128] = {.lex_state = 17}, [1129] = {.lex_state = 411}, [1130] = {.lex_state = 411}, [1131] = {.lex_state = 411}, [1132] = {.lex_state = 411}, - [1133] = {.lex_state = 17}, + [1133] = {.lex_state = 411}, [1134] = {.lex_state = 411}, [1135] = {.lex_state = 411}, - [1136] = {.lex_state = 411}, - [1137] = {.lex_state = 411}, + [1136] = {.lex_state = 17}, + [1137] = {.lex_state = 17}, [1138] = {.lex_state = 411}, - [1139] = {.lex_state = 411}, + [1139] = {.lex_state = 17}, [1140] = {.lex_state = 411}, - [1141] = {.lex_state = 411}, + [1141] = {.lex_state = 17}, [1142] = {.lex_state = 411}, [1143] = {.lex_state = 411}, - [1144] = {.lex_state = 17}, - [1145] = {.lex_state = 17}, + [1144] = {.lex_state = 411}, + [1145] = {.lex_state = 411}, [1146] = {.lex_state = 411}, [1147] = {.lex_state = 17}, - [1148] = {.lex_state = 17}, + [1148] = {.lex_state = 411}, [1149] = {.lex_state = 17}, [1150] = {.lex_state = 17}, - [1151] = {.lex_state = 17}, - [1152] = {.lex_state = 17}, - [1153] = {.lex_state = 411}, - [1154] = {.lex_state = 411}, + [1151] = {.lex_state = 411}, + [1152] = {.lex_state = 411}, + [1153] = {.lex_state = 17}, + [1154] = {.lex_state = 17}, [1155] = {.lex_state = 411}, - [1156] = {.lex_state = 17}, + [1156] = {.lex_state = 411}, [1157] = {.lex_state = 411}, - [1158] = {.lex_state = 411}, + [1158] = {.lex_state = 17}, [1159] = {.lex_state = 411}, [1160] = {.lex_state = 411}, [1161] = {.lex_state = 411}, [1162] = {.lex_state = 411}, - [1163] = {.lex_state = 411}, - [1164] = {.lex_state = 411}, - [1165] = {.lex_state = 411}, - [1166] = {.lex_state = 411}, - [1167] = {.lex_state = 17}, - [1168] = {.lex_state = 51}, - [1169] = {.lex_state = 17}, - [1170] = {.lex_state = 17}, + [1163] = {.lex_state = 17}, + [1164] = {.lex_state = 17}, + [1165] = {.lex_state = 17}, + [1166] = {.lex_state = 17}, + [1167] = {.lex_state = 411}, + [1168] = {.lex_state = 411}, + [1169] = {.lex_state = 411}, + [1170] = {.lex_state = 51}, [1171] = {(TSStateId)(-1)}, [1172] = {(TSStateId)(-1)}, [1173] = {(TSStateId)(-1)}, @@ -12215,44 +12222,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__namedot] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(1094), - [sym__statement] = STATE(503), + [sym_source_code] = STATE(1159), + [sym__statement] = STATE(428), [sym_comment] = STATE(1), [sym_include] = STATE(1), - [sym_assignment] = STATE(1080), - [sym_variable_definition] = STATE(438), - [sym_variable_assignment] = STATE(438), - [sym_buffer_definition] = STATE(438), - [sym_function_call_statement] = STATE(438), - [sym_function_call] = STATE(1070), - [sym__if_statement] = STATE(438), - [sym_if_do_statement] = STATE(436), - [sym_if_then_statement] = STATE(436), - [sym__loop_statement] = STATE(438), - [sym_repeat_statement] = STATE(432), - [sym_do_while_statement] = STATE(432), - [sym_do_statement] = STATE(432), - [sym_procedure_statement] = STATE(438), - [sym_procedure_parameter_definition] = STATE(438), - [sym_function_statement] = STATE(438), - [sym_return_statement] = STATE(438), - [sym_class_statement] = STATE(438), - [sym_stream_definition] = STATE(438), - [sym_input_close_statement] = STATE(438), - [sym_output_close_statement] = STATE(438), - [sym__stream_statement] = STATE(438), - [sym_input_stream_statement] = STATE(430), - [sym_output_stream_statement] = STATE(430), - [sym_case_statement] = STATE(438), - [sym_for_statement] = STATE(438), - [sym_find_statement] = STATE(438), - [sym_transaction_statement] = STATE(438), - [sym_abl_statement] = STATE(438), - [sym_assign_statement] = STATE(438), - [sym_catch_statement] = STATE(438), - [sym_finally_statement] = STATE(438), - [sym_accumulate_statement] = STATE(438), - [aux_sym_source_code_repeat1] = STATE(63), + [sym_assignment] = STATE(1157), + [sym_variable_definition] = STATE(430), + [sym_variable_assignment] = STATE(430), + [sym_buffer_definition] = STATE(430), + [sym_function_call_statement] = STATE(430), + [sym_function_call] = STATE(1156), + [sym__if_statement] = STATE(430), + [sym_if_do_statement] = STATE(431), + [sym_if_then_statement] = STATE(431), + [sym__loop_statement] = STATE(430), + [sym_repeat_statement] = STATE(434), + [sym_do_while_statement] = STATE(434), + [sym_do_statement] = STATE(434), + [sym_procedure_statement] = STATE(430), + [sym_procedure_parameter_definition] = STATE(430), + [sym_function_statement] = STATE(430), + [sym_return_statement] = STATE(430), + [sym_class_statement] = STATE(430), + [sym_stream_definition] = STATE(430), + [sym_input_close_statement] = STATE(430), + [sym_output_close_statement] = STATE(430), + [sym__stream_statement] = STATE(430), + [sym_input_stream_statement] = STATE(435), + [sym_output_stream_statement] = STATE(435), + [sym_case_statement] = STATE(430), + [sym_for_statement] = STATE(430), + [sym_find_statement] = STATE(430), + [sym_transaction_statement] = STATE(430), + [sym_abl_statement] = STATE(430), + [sym_assign_statement] = STATE(430), + [sym_catch_statement] = STATE(430), + [sym_finally_statement] = STATE(430), + [sym_accumulate_statement] = STATE(430), + [aux_sym_source_code_repeat1] = STATE(66), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [aux_sym_input_expression_token1] = ACTIONS(11), @@ -12320,11 +12327,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(258), 1, + STATE(254), 1, sym__expression, - STATE(617), 1, + STATE(614), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12338,7 +12345,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12347,7 +12354,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12358,7 +12365,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12416,11 +12423,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(91), 1, anon_sym_RPAREN, - STATE(256), 1, + STATE(252), 1, sym__expression, STATE(622), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12434,7 +12441,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12443,7 +12450,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12454,7 +12461,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12512,11 +12519,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(93), 1, anon_sym_RPAREN, - STATE(252), 1, + STATE(258), 1, sym__expression, - STATE(610), 1, + STATE(619), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12530,7 +12537,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12539,7 +12546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12550,7 +12557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12608,11 +12615,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(95), 1, anon_sym_RPAREN, - STATE(254), 1, + STATE(260), 1, sym__expression, - STATE(614), 1, + STATE(613), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12626,7 +12633,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12635,7 +12642,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12646,7 +12653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12704,11 +12711,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(97), 1, anon_sym_RPAREN, - STATE(260), 1, + STATE(255), 1, sym__expression, - STATE(611), 1, + STATE(624), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12722,7 +12729,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12731,7 +12738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12742,7 +12749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12800,11 +12807,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(99), 1, anon_sym_RPAREN, - STATE(255), 1, + STATE(259), 1, sym__expression, - STATE(616), 1, + STATE(611), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, ACTIONS(49), 2, sym_null_expression, @@ -12818,7 +12825,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -12827,7 +12834,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -12838,7 +12845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -12855,7 +12862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [768] = 33, + [768] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -12902,31 +12909,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(486), 1, + sym__function_terminator, + STATE(514), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(828), 1, + STATE(848), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, + STATE(1131), 1, + sym_function_call, STATE(8), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(556), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -12951,7 +12959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [897] = 34, + [899] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -12998,32 +13006,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(499), 1, - sym__block_terminator, - STATE(520), 1, - sym__function_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(851), 1, + STATE(799), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, + STATE(1131), 1, + sym_function_call, STATE(9), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(542), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13095,224 +13102,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(849), 1, + STATE(814), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, + STATE(1131), 1, + sym_function_call, STATE(10), 2, sym_comment, sym_include, - STATE(442), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [1157] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(141), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(499), 1, + STATE(502), 2, sym__block_terminator, - STATE(500), 1, - sym__function_terminator, - STATE(543), 1, - sym__statement, - STATE(858), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(11), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [1288] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(103), 1, - aux_sym__block_terminator_token1, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(813), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(12), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, + sym__procedure_terminator, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(576), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13337,7 +13151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [1417] = 33, + [1157] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -13380,35 +13194,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(143), 1, + ACTIONS(141), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(792), 1, + STATE(807), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(13), 2, + STATE(1131), 1, + sym_function_call, + STATE(11), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(593), 2, + STATE(429), 2, sym__block_terminator, sym__procedure_terminator, - STATE(546), 3, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13433,13 +13247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [1546] = 34, + [1286] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(101), 1, sym_identifier, + ACTIONS(103), 1, + aux_sym__block_terminator_token1, ACTIONS(105), 1, aux_sym_input_expression_token1, ACTIONS(107), 1, @@ -13476,36 +13292,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(141), 1, - aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(499), 1, - sym__block_terminator, - STATE(533), 1, + STATE(513), 1, sym__function_terminator, - STATE(543), 1, + STATE(514), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(848), 1, + STATE(829), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(14), 2, + STATE(1131), 1, + sym_function_call, + STATE(12), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13530,7 +13344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [1677] = 34, + [1417] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -13577,32 +13391,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(455), 1, - sym__function_terminator, - STATE(472), 1, + STATE(499), 1, sym__block_terminator, - STATE(543), 1, + STATE(500), 1, + sym__function_terminator, + STATE(544), 1, sym__statement, - STATE(817), 1, + STATE(842), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(15), 2, + STATE(1131), 1, + sym_function_call, + STATE(13), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13627,7 +13441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [1808] = 34, + [1548] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -13674,32 +13488,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(460), 1, - sym__function_terminator, - STATE(472), 1, + STATE(499), 1, sym__block_terminator, - STATE(543), 1, + STATE(521), 1, + sym__function_terminator, + STATE(544), 1, sym__statement, - STATE(822), 1, + STATE(802), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(16), 2, + STATE(1131), 1, + sym_function_call, + STATE(14), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13724,7 +13538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [1939] = 34, + [1679] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -13771,32 +13585,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(471), 1, - sym__function_terminator, - STATE(472), 1, + STATE(499), 1, sym__block_terminator, - STATE(543), 1, + STATE(534), 1, + sym__function_terminator, + STATE(544), 1, sym__statement, - STATE(835), 1, + STATE(792), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(17), 2, + STATE(1131), 1, + sym_function_call, + STATE(15), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13821,13 +13635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2070] = 33, + [1810] = 34, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(101), 1, sym_identifier, + ACTIONS(103), 1, + aux_sym__block_terminator_token1, ACTIONS(105), 1, aux_sym_input_expression_token1, ACTIONS(107), 1, @@ -13864,34 +13680,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, - aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(564), 1, + STATE(497), 1, + sym__function_terminator, + STATE(514), 1, sym__block_terminator, - STATE(898), 1, + STATE(544), 1, + sym__statement, + STATE(843), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(18), 2, + STATE(1131), 1, + sym_function_call, + STATE(16), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -13916,7 +13732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2198] = 33, + [1941] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -13959,34 +13775,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, + ACTIONS(143), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(795), 1, - sym__block_terminator, - STATE(890), 1, + STATE(854), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(19), 2, + STATE(1131), 1, + sym_function_call, + STATE(17), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(437), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14011,7 +13828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2326] = 33, + [2070] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14058,30 +13875,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(524), 1, - sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(924), 1, + STATE(828), 1, + sym__block_terminator, + STATE(941), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(20), 2, + STATE(1131), 1, + sym_function_call, + STATE(18), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14106,7 +13923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2454] = 33, + [2198] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14153,125 +13970,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(844), 1, + STATE(392), 1, sym__block_terminator, - STATE(964), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(21), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [2582] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(587), 1, - sym__block_terminator, - STATE(960), 1, + STATE(888), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(22), 2, + STATE(1131), 1, + sym_function_call, + STATE(19), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14296,7 +14018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2710] = 33, + [2326] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14343,30 +14065,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(372), 1, + STATE(454), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(923), 1, + STATE(899), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(23), 2, + STATE(1131), 1, + sym_function_call, + STATE(20), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14391,7 +14113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2838] = 33, + [2454] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14434,34 +14156,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(846), 1, + STATE(517), 1, sym__block_terminator, - STATE(877), 1, + STATE(544), 1, + sym__statement, + STATE(930), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(24), 2, + STATE(1131), 1, + sym_function_call, + STATE(21), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14486,102 +14208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [2966] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(515), 1, - sym__block_terminator, - STATE(543), 1, - sym__statement, - STATE(883), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(25), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [3094] = 27, + [2582] = 27, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14614,11 +14241,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, ACTIONS(155), 1, anon_sym_RPAREN, - STATE(295), 1, + STATE(284), 1, sym__expression, - STATE(810), 1, + STATE(853), 1, sym_accumulate_aggregate, - STATE(980), 1, + STATE(1101), 1, sym_function_call_argument, ACTIONS(49), 2, sym_null_expression, @@ -14626,7 +14253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(26), 2, + STATE(22), 2, sym_comment, sym_include, STATE(71), 2, @@ -14637,7 +14264,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, @@ -14653,7 +14280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -14670,102 +14297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [3210] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(816), 1, - sym__block_terminator, - STATE(897), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(27), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [3338] = 33, + [2698] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14808,34 +14340,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(416), 1, + STATE(518), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(863), 1, + STATE(879), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(28), 2, + STATE(1131), 1, + sym_function_call, + STATE(23), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14860,7 +14392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [3466] = 33, + [2826] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14903,34 +14435,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, + ACTIONS(147), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(797), 1, + STATE(825), 1, sym__block_terminator, - STATE(888), 1, + STATE(927), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(29), 2, + STATE(1131), 1, + sym_function_call, + STATE(24), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -14955,7 +14487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [3594] = 33, + [2954] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -14998,34 +14530,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(798), 1, + STATE(412), 1, sym__block_terminator, - STATE(879), 1, + STATE(544), 1, + sym__statement, + STATE(960), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(30), 2, + STATE(1131), 1, + sym_function_call, + STATE(25), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15050,7 +14582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [3722] = 33, + [3082] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15093,34 +14625,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, + ACTIONS(147), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(466), 1, - sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(919), 1, + STATE(797), 1, + sym__block_terminator, + STATE(928), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(31), 2, + STATE(1131), 1, + sym_function_call, + STATE(26), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15145,7 +14677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [3850] = 33, + [3210] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15188,34 +14720,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, + ACTIONS(149), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(439), 1, + STATE(344), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(961), 1, + STATE(955), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(32), 2, + STATE(1131), 1, + sym_function_call, + STATE(27), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15240,7 +14772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [3978] = 33, + [3338] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15283,34 +14815,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(149), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(852), 1, + STATE(424), 1, sym__block_terminator, - STATE(872), 1, + STATE(544), 1, + sym__statement, + STATE(953), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(33), 2, + STATE(1131), 1, + sym_function_call, + STATE(28), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15335,7 +14867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [4106] = 33, + [3466] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15382,30 +14914,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(581), 1, + STATE(801), 1, sym__block_terminator, - STATE(862), 1, + STATE(932), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(34), 2, + STATE(1131), 1, + sym_function_call, + STATE(29), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15430,7 +14962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [4234] = 33, + [3594] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15477,220 +15009,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(497), 1, - sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(933), 1, - sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(35), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [4362] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(504), 1, + STATE(810), 1, sym__block_terminator, - STATE(543), 1, - sym__statement, - STATE(866), 1, + STATE(934), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(36), 2, - sym_comment, - sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [4490] = 33, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(105), 1, - aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, - aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(421), 1, - sym__block_terminator, - STATE(543), 1, - sym__statement, - STATE(896), 1, - sym_body, - STATE(1050), 1, + STATE(1131), 1, sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(37), 2, + STATE(30), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15715,7 +15057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [4618] = 33, + [3722] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15762,30 +15104,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(494), 1, + STATE(476), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(885), 1, + STATE(920), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(38), 2, + STATE(1131), 1, + sym_function_call, + STATE(31), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15810,7 +15152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [4746] = 33, + [3850] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15853,34 +15195,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(159), 1, + ACTIONS(147), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(359), 1, - sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(886), 1, + STATE(856), 1, + sym__block_terminator, + STATE(943), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(39), 2, + STATE(1131), 1, + sym_function_call, + STATE(32), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -15905,7 +15247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [4874] = 33, + [3978] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -15952,30 +15294,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(518), 1, + STATE(460), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(925), 1, + STATE(957), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(40), 2, + STATE(1131), 1, + sym_function_call, + STATE(33), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16000,7 +15342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5002] = 33, + [4106] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16043,34 +15385,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, + ACTIONS(149), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(530), 1, + STATE(383), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(921), 1, + STATE(892), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(41), 2, + STATE(1131), 1, + sym_function_call, + STATE(34), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16095,96 +15437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5130] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(87), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(155), 1, - anon_sym_RPAREN, - STATE(295), 1, - sym__expression, - STATE(860), 1, - sym_accumulate_aggregate, - STATE(980), 1, - sym_function_call_argument, - ACTIONS(49), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(89), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(42), 2, - sym_comment, - sym_include, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(51), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(243), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - ACTIONS(157), 10, - aux_sym_accumulate_aggregate_token1, - aux_sym_accumulate_aggregate_token2, - aux_sym_accumulate_aggregate_token3, - aux_sym_accumulate_aggregate_token4, - aux_sym_accumulate_aggregate_token5, - aux_sym_accumulate_aggregate_token6, - aux_sym_accumulate_aggregate_token7, - aux_sym_accumulate_aggregate_token8, - aux_sym_accumulate_aggregate_token9, - aux_sym_accumulate_aggregate_token10, - STATE(241), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [5246] = 33, + [4234] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16227,34 +15480,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(478), 1, + STATE(419), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(937), 1, + STATE(902), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(43), 2, + STATE(1131), 1, + sym_function_call, + STATE(35), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16279,7 +15532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5374] = 33, + [4362] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16322,34 +15575,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, + ACTIONS(159), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(462), 1, + STATE(379), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(941), 1, + STATE(958), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(44), 2, + STATE(1131), 1, + sym_function_call, + STATE(36), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16374,7 +15627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5502] = 33, + [4490] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16417,34 +15670,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(147), 1, + ACTIONS(159), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(562), 1, + STATE(400), 1, sym__block_terminator, - STATE(902), 1, + STATE(544), 1, + sym__statement, + STATE(956), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(45), 2, + STATE(1131), 1, + sym_function_call, + STATE(37), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16469,7 +15722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5630] = 33, + [4618] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16512,34 +15765,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(159), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(386), 1, + STATE(490), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(892), 1, + STATE(918), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(46), 2, + STATE(1131), 1, + sym_function_call, + STATE(38), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16564,7 +15817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5758] = 33, + [4746] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16611,30 +15864,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(387), 1, - sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(942), 1, + STATE(588), 1, + sym__block_terminator, + STATE(919), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(47), 2, + STATE(1131), 1, + sym_function_call, + STATE(39), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16659,7 +15912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [5886] = 33, + [4874] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16702,34 +15955,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(159), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(382), 1, + STATE(520), 1, sym__block_terminator, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(912), 1, + STATE(946), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(48), 2, + STATE(1131), 1, + sym_function_call, + STATE(40), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16754,7 +16007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6014] = 33, + [5002] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16797,34 +16050,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(153), 1, + ACTIONS(147), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(586), 1, + STATE(834), 1, sym__block_terminator, - STATE(952), 1, + STATE(906), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(49), 2, + STATE(1131), 1, + sym_function_call, + STATE(41), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16849,7 +16102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6142] = 33, + [5130] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16896,30 +16149,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(399), 1, - sym__block_terminator, STATE(543), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(944), 1, + STATE(937), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(50), 2, + STATE(1131), 1, + sym_function_call, + STATE(42), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -16944,7 +16197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6270] = 32, + [5258] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -16987,32 +16240,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(161), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(516), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1078), 1, + STATE(900), 1, sym_body, - STATE(51), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(43), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17037,7 +16292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6395] = 32, + [5386] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17080,32 +16335,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(163), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1105), 1, + STATE(570), 1, + sym__block_terminator, + STATE(926), 1, sym_body, - STATE(52), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(44), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17130,7 +16387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6520] = 32, + [5514] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17173,32 +16430,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(165), 1, + ACTIONS(159), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(346), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1056), 1, + STATE(925), 1, sym_body, - STATE(53), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(45), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17223,7 +16482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6645] = 32, + [5642] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17266,32 +16525,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(167), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1055), 1, + STATE(576), 1, + sym__block_terminator, + STATE(923), 1, sym_body, - STATE(54), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(46), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17316,7 +16577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6770] = 32, + [5770] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17359,32 +16620,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(169), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(498), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1157), 1, + STATE(952), 1, sym_body, - STATE(55), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(47), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17409,100 +16672,96 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [6895] = 32, + [5898] = 27, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(101), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(105), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, + aux_sym_unary_expression_token1, + ACTIONS(59), 1, + aux_sym_unary_expression_token2, + ACTIONS(61), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, + aux_sym_locked_expression_token1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(107), 1, - aux_sym_variable_definition_token1, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(111), 1, - aux_sym_buffer_definition_token2, - ACTIONS(113), 1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(115), 1, - aux_sym_if_do_statement_token3, - ACTIONS(117), 1, - aux_sym_repeat_statement_token1, - ACTIONS(119), 1, - aux_sym__procedure_terminator_token1, - ACTIONS(121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(125), 1, - aux_sym__function_terminator_token1, - ACTIONS(127), 1, - aux_sym_class_statement_token1, - ACTIONS(129), 1, - aux_sym__case_terminator_token1, - ACTIONS(131), 1, - aux_sym_find_statement_token1, - ACTIONS(133), 1, - aux_sym_assign_statement_token1, - ACTIONS(135), 1, - aux_sym_catch_statement_token1, - ACTIONS(137), 1, - aux_sym_finally_statement_token1, - ACTIONS(139), 1, - aux_sym_accumulate_statement_token1, - ACTIONS(171), 1, - aux_sym__block_terminator_token1, - STATE(65), 1, - aux_sym_source_code_repeat1, - STATE(543), 1, - sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1081), 1, - sym_body, - STATE(56), 2, + ACTIONS(81), 1, + aux_sym_can_find_expression_token1, + ACTIONS(87), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(155), 1, + anon_sym_RPAREN, + STATE(284), 1, + sym__expression, + STATE(846), 1, + sym_accumulate_aggregate, + STATE(1101), 1, + sym_function_call_argument, + ACTIONS(49), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(89), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(48), 2, sym_comment, sym_include, - STATE(545), 2, - sym_if_do_statement, - sym_if_then_statement, - STATE(547), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(546), 3, - sym_repeat_statement, - sym_do_while_statement, - sym_do_statement, - STATE(544), 24, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_function_call_statement, - sym__if_statement, - sym__loop_statement, - sym_procedure_statement, - sym_procedure_parameter_definition, - sym_function_statement, - sym_return_statement, - sym_class_statement, - sym_stream_definition, - sym_input_close_statement, - sym_output_close_statement, - sym__stream_statement, - sym_case_statement, - sym_for_statement, - sym_find_statement, - sym_transaction_statement, - sym_abl_statement, - sym_assign_statement, - sym_catch_statement, - sym_finally_statement, - sym_accumulate_statement, - [7020] = 32, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(51), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(248), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + ACTIONS(157), 10, + aux_sym_accumulate_aggregate_token1, + aux_sym_accumulate_aggregate_token2, + aux_sym_accumulate_aggregate_token3, + aux_sym_accumulate_aggregate_token4, + aux_sym_accumulate_aggregate_token5, + aux_sym_accumulate_aggregate_token6, + aux_sym_accumulate_aggregate_token7, + aux_sym_accumulate_aggregate_token8, + aux_sym_accumulate_aggregate_token9, + aux_sym_accumulate_aggregate_token10, + STATE(249), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [6014] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17545,32 +16804,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(173), 1, + ACTIONS(153), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(445), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1103), 1, + STATE(875), 1, sym_body, - STATE(57), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(49), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17595,7 +16856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7145] = 32, + [6142] = 33, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17638,32 +16899,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(175), 1, + ACTIONS(151), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(449), 1, + sym__block_terminator, + STATE(544), 1, sym__statement, - STATE(967), 1, + STATE(903), 1, sym_body, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(58), 2, + STATE(1131), 1, + sym_function_call, + STATE(50), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17688,7 +16951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7270] = 32, + [6270] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17731,32 +16994,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(177), 1, + ACTIONS(161), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1090), 1, + STATE(1016), 1, sym_body, - STATE(59), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(51), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17781,7 +17044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7395] = 32, + [6395] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17824,32 +17087,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(179), 1, + ACTIONS(163), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(1134), 1, + STATE(997), 1, sym_body, - STATE(60), 2, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(52), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17874,7 +17137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7520] = 32, + [6520] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -17917,32 +17180,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(181), 1, + ACTIONS(165), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(1086), 1, + STATE(1058), 1, sym_body, - STATE(61), 2, + STATE(1131), 1, + sym_function_call, + STATE(53), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -17967,7 +17230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7645] = 32, + [6645] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -18010,32 +17273,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(183), 1, + ACTIONS(167), 1, aux_sym__block_terminator_token1, STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, + STATE(1045), 1, sym_assignment, - STATE(1079), 1, + STATE(1093), 1, sym_body, - STATE(62), 2, + STATE(1131), 1, + sym_function_call, + STATE(54), 2, sym_comment, sym_include, - STATE(545), 2, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -18060,73 +17323,168 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7770] = 31, + [6770] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(9), 1, + ACTIONS(101), 1, sym_identifier, - ACTIONS(11), 1, + ACTIONS(105), 1, aux_sym_input_expression_token1, - ACTIONS(13), 1, + ACTIONS(107), 1, aux_sym_variable_definition_token1, - ACTIONS(15), 1, + ACTIONS(109), 1, aux_sym_variable_definition_token2, - ACTIONS(17), 1, + ACTIONS(111), 1, aux_sym_buffer_definition_token2, - ACTIONS(19), 1, + ACTIONS(113), 1, aux_sym_if_do_statement_token1, - ACTIONS(21), 1, + ACTIONS(115), 1, aux_sym_if_do_statement_token3, - ACTIONS(23), 1, + ACTIONS(117), 1, aux_sym_repeat_statement_token1, - ACTIONS(25), 1, + ACTIONS(119), 1, aux_sym__procedure_terminator_token1, - ACTIONS(27), 1, + ACTIONS(121), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(29), 1, + ACTIONS(123), 1, aux_sym_procedure_parameter_definition_token3, - ACTIONS(31), 1, + ACTIONS(125), 1, aux_sym__function_terminator_token1, - ACTIONS(33), 1, + ACTIONS(127), 1, aux_sym_class_statement_token1, - ACTIONS(35), 1, + ACTIONS(129), 1, aux_sym__case_terminator_token1, - ACTIONS(37), 1, + ACTIONS(131), 1, aux_sym_find_statement_token1, - ACTIONS(39), 1, + ACTIONS(133), 1, aux_sym_assign_statement_token1, - ACTIONS(41), 1, + ACTIONS(135), 1, aux_sym_catch_statement_token1, - ACTIONS(43), 1, + ACTIONS(137), 1, aux_sym_finally_statement_token1, - ACTIONS(45), 1, + ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(185), 1, - ts_builtin_sym_end, - STATE(66), 1, + ACTIONS(169), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, aux_sym_source_code_repeat1, - STATE(503), 1, + STATE(544), 1, sym__statement, - STATE(1070), 1, - sym_function_call, - STATE(1080), 1, + STATE(1045), 1, sym_assignment, - STATE(63), 2, + STATE(1089), 1, + sym_body, + STATE(1131), 1, + sym_function_call, + STATE(55), 2, sym_comment, sym_include, - STATE(430), 2, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(436), 2, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [6895] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(105), 1, + aux_sym_input_expression_token1, + ACTIONS(107), 1, + aux_sym_variable_definition_token1, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(111), 1, + aux_sym_buffer_definition_token2, + ACTIONS(113), 1, + aux_sym_if_do_statement_token1, + ACTIONS(115), 1, + aux_sym_if_do_statement_token3, + ACTIONS(117), 1, + aux_sym_repeat_statement_token1, + ACTIONS(119), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(121), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(125), 1, + aux_sym__function_terminator_token1, + ACTIONS(127), 1, + aux_sym_class_statement_token1, + ACTIONS(129), 1, + aux_sym__case_terminator_token1, + ACTIONS(131), 1, + aux_sym_find_statement_token1, + ACTIONS(133), 1, + aux_sym_assign_statement_token1, + ACTIONS(135), 1, + aux_sym_catch_statement_token1, + ACTIONS(137), 1, + aux_sym_finally_statement_token1, + ACTIONS(139), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(171), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, + sym__statement, + STATE(1045), 1, + sym_assignment, + STATE(1067), 1, + sym_body, + STATE(1131), 1, + sym_function_call, + STATE(56), 2, + sym_comment, + sym_include, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(432), 3, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(438), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -18151,72 +17509,447 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [7892] = 30, + [7020] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(187), 1, + ACTIONS(101), 1, sym_identifier, - ACTIONS(190), 1, + ACTIONS(105), 1, + aux_sym_input_expression_token1, + ACTIONS(107), 1, + aux_sym_variable_definition_token1, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(111), 1, + aux_sym_buffer_definition_token2, + ACTIONS(113), 1, + aux_sym_if_do_statement_token1, + ACTIONS(115), 1, + aux_sym_if_do_statement_token3, + ACTIONS(117), 1, + aux_sym_repeat_statement_token1, + ACTIONS(119), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(121), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(125), 1, + aux_sym__function_terminator_token1, + ACTIONS(127), 1, + aux_sym_class_statement_token1, + ACTIONS(129), 1, + aux_sym__case_terminator_token1, + ACTIONS(131), 1, + aux_sym_find_statement_token1, + ACTIONS(133), 1, + aux_sym_assign_statement_token1, + ACTIONS(135), 1, + aux_sym_catch_statement_token1, + ACTIONS(137), 1, + aux_sym_finally_statement_token1, + ACTIONS(139), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(173), 1, aux_sym__block_terminator_token1, - ACTIONS(192), 1, + STATE(65), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, + sym__statement, + STATE(1045), 1, + sym_assignment, + STATE(1082), 1, + sym_body, + STATE(1131), 1, + sym_function_call, + STATE(57), 2, + sym_comment, + sym_include, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7145] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(105), 1, aux_sym_input_expression_token1, - ACTIONS(195), 1, + ACTIONS(107), 1, aux_sym_variable_definition_token1, - ACTIONS(198), 1, + ACTIONS(109), 1, aux_sym_variable_definition_token2, - ACTIONS(201), 1, + ACTIONS(111), 1, aux_sym_buffer_definition_token2, - ACTIONS(204), 1, + ACTIONS(113), 1, aux_sym_if_do_statement_token1, - ACTIONS(207), 1, + ACTIONS(115), 1, aux_sym_if_do_statement_token3, - ACTIONS(210), 1, + ACTIONS(117), 1, aux_sym_repeat_statement_token1, - ACTIONS(213), 1, + ACTIONS(119), 1, aux_sym__procedure_terminator_token1, - ACTIONS(216), 1, + ACTIONS(121), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(219), 1, + ACTIONS(123), 1, aux_sym_procedure_parameter_definition_token3, - ACTIONS(222), 1, + ACTIONS(125), 1, aux_sym__function_terminator_token1, - ACTIONS(225), 1, + ACTIONS(127), 1, aux_sym_class_statement_token1, - ACTIONS(228), 1, + ACTIONS(129), 1, aux_sym__case_terminator_token1, - ACTIONS(231), 1, + ACTIONS(131), 1, aux_sym_find_statement_token1, - ACTIONS(234), 1, + ACTIONS(133), 1, aux_sym_assign_statement_token1, - ACTIONS(237), 1, + ACTIONS(135), 1, aux_sym_catch_statement_token1, - ACTIONS(240), 1, + ACTIONS(137), 1, aux_sym_finally_statement_token1, - ACTIONS(243), 1, + ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - STATE(543), 1, + ACTIONS(175), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, sym__statement, - STATE(1050), 1, + STATE(1027), 1, + sym_body, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, sym_function_call, - STATE(1051), 1, + STATE(58), 2, + sym_comment, + sym_include, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7270] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(105), 1, + aux_sym_input_expression_token1, + ACTIONS(107), 1, + aux_sym_variable_definition_token1, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(111), 1, + aux_sym_buffer_definition_token2, + ACTIONS(113), 1, + aux_sym_if_do_statement_token1, + ACTIONS(115), 1, + aux_sym_if_do_statement_token3, + ACTIONS(117), 1, + aux_sym_repeat_statement_token1, + ACTIONS(119), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(121), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(125), 1, + aux_sym__function_terminator_token1, + ACTIONS(127), 1, + aux_sym_class_statement_token1, + ACTIONS(129), 1, + aux_sym__case_terminator_token1, + ACTIONS(131), 1, + aux_sym_find_statement_token1, + ACTIONS(133), 1, + aux_sym_assign_statement_token1, + ACTIONS(135), 1, + aux_sym_catch_statement_token1, + ACTIONS(137), 1, + aux_sym_finally_statement_token1, + ACTIONS(139), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(177), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, + sym__statement, + STATE(974), 1, + sym_body, + STATE(1045), 1, sym_assignment, - STATE(545), 2, + STATE(1131), 1, + sym_function_call, + STATE(59), 2, + sym_comment, + sym_include, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(548), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(64), 3, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7395] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(105), 1, + aux_sym_input_expression_token1, + ACTIONS(107), 1, + aux_sym_variable_definition_token1, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(111), 1, + aux_sym_buffer_definition_token2, + ACTIONS(113), 1, + aux_sym_if_do_statement_token1, + ACTIONS(115), 1, + aux_sym_if_do_statement_token3, + ACTIONS(117), 1, + aux_sym_repeat_statement_token1, + ACTIONS(119), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(121), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(125), 1, + aux_sym__function_terminator_token1, + ACTIONS(127), 1, + aux_sym_class_statement_token1, + ACTIONS(129), 1, + aux_sym__case_terminator_token1, + ACTIONS(131), 1, + aux_sym_find_statement_token1, + ACTIONS(133), 1, + aux_sym_assign_statement_token1, + ACTIONS(135), 1, + aux_sym_catch_statement_token1, + ACTIONS(137), 1, + aux_sym_finally_statement_token1, + ACTIONS(139), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(179), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, + sym__statement, + STATE(1045), 1, + sym_assignment, + STATE(1081), 1, + sym_body, + STATE(1131), 1, + sym_function_call, + STATE(60), 2, sym_comment, sym_include, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7520] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(105), 1, + aux_sym_input_expression_token1, + ACTIONS(107), 1, + aux_sym_variable_definition_token1, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(111), 1, + aux_sym_buffer_definition_token2, + ACTIONS(113), 1, + aux_sym_if_do_statement_token1, + ACTIONS(115), 1, + aux_sym_if_do_statement_token3, + ACTIONS(117), 1, + aux_sym_repeat_statement_token1, + ACTIONS(119), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(121), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(125), 1, + aux_sym__function_terminator_token1, + ACTIONS(127), 1, + aux_sym_class_statement_token1, + ACTIONS(129), 1, + aux_sym__case_terminator_token1, + ACTIONS(131), 1, + aux_sym_find_statement_token1, + ACTIONS(133), 1, + aux_sym_assign_statement_token1, + ACTIONS(135), 1, + aux_sym_catch_statement_token1, + ACTIONS(137), 1, + aux_sym_finally_statement_token1, + ACTIONS(139), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(181), 1, + aux_sym__block_terminator_token1, + STATE(65), 1, aux_sym_source_code_repeat1, - STATE(546), 3, + STATE(544), 1, + sym__statement, + STATE(1000), 1, + sym_body, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(61), 2, + sym_comment, + sym_include, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(545), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -18241,7 +17974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [8012] = 31, + [7645] = 32, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -18284,30 +18017,212 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_statement_token1, ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - ACTIONS(246), 1, + ACTIONS(183), 1, aux_sym__block_terminator_token1, - STATE(64), 1, + STATE(65), 1, aux_sym_source_code_repeat1, - STATE(543), 1, + STATE(544), 1, sym__statement, - STATE(1050), 1, + STATE(1045), 1, + sym_assignment, + STATE(1072), 1, + sym_body, + STATE(1131), 1, sym_function_call, - STATE(1051), 1, + STATE(62), 2, + sym_comment, + sym_include, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7770] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + sym_identifier, + ACTIONS(188), 1, + aux_sym__block_terminator_token1, + ACTIONS(190), 1, + aux_sym_input_expression_token1, + ACTIONS(193), 1, + aux_sym_variable_definition_token1, + ACTIONS(196), 1, + aux_sym_variable_definition_token2, + ACTIONS(199), 1, + aux_sym_buffer_definition_token2, + ACTIONS(202), 1, + aux_sym_if_do_statement_token1, + ACTIONS(205), 1, + aux_sym_if_do_statement_token3, + ACTIONS(208), 1, + aux_sym_repeat_statement_token1, + ACTIONS(211), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(214), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(217), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(220), 1, + aux_sym__function_terminator_token1, + ACTIONS(223), 1, + aux_sym_class_statement_token1, + ACTIONS(226), 1, + aux_sym__case_terminator_token1, + ACTIONS(229), 1, + aux_sym_find_statement_token1, + ACTIONS(232), 1, + aux_sym_assign_statement_token1, + ACTIONS(235), 1, + aux_sym_catch_statement_token1, + ACTIONS(238), 1, + aux_sym_finally_statement_token1, + ACTIONS(241), 1, + aux_sym_accumulate_statement_token1, + STATE(544), 1, + sym__statement, + STATE(1045), 1, sym_assignment, - STATE(65), 2, + STATE(1131), 1, + sym_function_call, + STATE(409), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(63), 3, sym_comment, sym_include, - STATE(545), 2, + aux_sym_source_code_repeat1, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [7890] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(244), 1, + ts_builtin_sym_end, + ACTIONS(246), 1, + sym_identifier, + ACTIONS(249), 1, + aux_sym_input_expression_token1, + ACTIONS(252), 1, + aux_sym_variable_definition_token1, + ACTIONS(255), 1, + aux_sym_variable_definition_token2, + ACTIONS(258), 1, + aux_sym_buffer_definition_token2, + ACTIONS(261), 1, + aux_sym_if_do_statement_token1, + ACTIONS(264), 1, + aux_sym_if_do_statement_token3, + ACTIONS(267), 1, + aux_sym_repeat_statement_token1, + ACTIONS(270), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(273), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(276), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(279), 1, + aux_sym__function_terminator_token1, + ACTIONS(282), 1, + aux_sym_class_statement_token1, + ACTIONS(285), 1, + aux_sym__case_terminator_token1, + ACTIONS(288), 1, + aux_sym_find_statement_token1, + ACTIONS(291), 1, + aux_sym_assign_statement_token1, + ACTIONS(294), 1, + aux_sym_catch_statement_token1, + ACTIONS(297), 1, + aux_sym_finally_statement_token1, + ACTIONS(300), 1, + aux_sym_accumulate_statement_token1, + STATE(428), 1, + sym__statement, + STATE(1156), 1, + sym_function_call, + STATE(1157), 1, + sym_assignment, + STATE(431), 2, sym_if_do_statement, sym_if_then_statement, - STATE(547), 2, + STATE(435), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(546), 3, + STATE(64), 3, + sym_comment, + sym_include, + aux_sym_source_code_repeat1, + STATE(434), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(544), 24, + STATE(430), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -18332,72 +18247,164 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [8134] = 30, + [8010] = 31, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(248), 1, - ts_builtin_sym_end, - ACTIONS(250), 1, + ACTIONS(101), 1, sym_identifier, - ACTIONS(253), 1, + ACTIONS(105), 1, aux_sym_input_expression_token1, - ACTIONS(256), 1, + ACTIONS(107), 1, aux_sym_variable_definition_token1, - ACTIONS(259), 1, + ACTIONS(109), 1, aux_sym_variable_definition_token2, - ACTIONS(262), 1, + ACTIONS(111), 1, aux_sym_buffer_definition_token2, - ACTIONS(265), 1, + ACTIONS(113), 1, aux_sym_if_do_statement_token1, - ACTIONS(268), 1, + ACTIONS(115), 1, aux_sym_if_do_statement_token3, - ACTIONS(271), 1, + ACTIONS(117), 1, aux_sym_repeat_statement_token1, - ACTIONS(274), 1, + ACTIONS(119), 1, aux_sym__procedure_terminator_token1, - ACTIONS(277), 1, + ACTIONS(121), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(280), 1, + ACTIONS(123), 1, aux_sym_procedure_parameter_definition_token3, - ACTIONS(283), 1, + ACTIONS(125), 1, aux_sym__function_terminator_token1, - ACTIONS(286), 1, + ACTIONS(127), 1, aux_sym_class_statement_token1, - ACTIONS(289), 1, + ACTIONS(129), 1, aux_sym__case_terminator_token1, - ACTIONS(292), 1, + ACTIONS(131), 1, aux_sym_find_statement_token1, - ACTIONS(295), 1, + ACTIONS(133), 1, aux_sym_assign_statement_token1, - ACTIONS(298), 1, + ACTIONS(135), 1, aux_sym_catch_statement_token1, - ACTIONS(301), 1, + ACTIONS(137), 1, aux_sym_finally_statement_token1, - ACTIONS(304), 1, + ACTIONS(139), 1, aux_sym_accumulate_statement_token1, - STATE(503), 1, + ACTIONS(303), 1, + aux_sym__block_terminator_token1, + STATE(63), 1, + aux_sym_source_code_repeat1, + STATE(544), 1, sym__statement, - STATE(1070), 1, - sym_function_call, - STATE(1080), 1, + STATE(1045), 1, sym_assignment, - STATE(430), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(436), 2, + STATE(1131), 1, + sym_function_call, + STATE(65), 2, + sym_comment, + sym_include, + STATE(409), 2, sym_if_do_statement, sym_if_then_statement, - STATE(66), 3, + STATE(548), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(547), 3, + sym_repeat_statement, + sym_do_while_statement, + sym_do_statement, + STATE(545), 24, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_function_call_statement, + sym__if_statement, + sym__loop_statement, + sym_procedure_statement, + sym_procedure_parameter_definition, + sym_function_statement, + sym_return_statement, + sym_class_statement, + sym_stream_definition, + sym_input_close_statement, + sym_output_close_statement, + sym__stream_statement, + sym_case_statement, + sym_for_statement, + sym_find_statement, + sym_transaction_statement, + sym_abl_statement, + sym_assign_statement, + sym_catch_statement, + sym_finally_statement, + sym_accumulate_statement, + [8132] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + aux_sym_input_expression_token1, + ACTIONS(13), 1, + aux_sym_variable_definition_token1, + ACTIONS(15), 1, + aux_sym_variable_definition_token2, + ACTIONS(17), 1, + aux_sym_buffer_definition_token2, + ACTIONS(19), 1, + aux_sym_if_do_statement_token1, + ACTIONS(21), 1, + aux_sym_if_do_statement_token3, + ACTIONS(23), 1, + aux_sym_repeat_statement_token1, + ACTIONS(25), 1, + aux_sym__procedure_terminator_token1, + ACTIONS(27), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(29), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(31), 1, + aux_sym__function_terminator_token1, + ACTIONS(33), 1, + aux_sym_class_statement_token1, + ACTIONS(35), 1, + aux_sym__case_terminator_token1, + ACTIONS(37), 1, + aux_sym_find_statement_token1, + ACTIONS(39), 1, + aux_sym_assign_statement_token1, + ACTIONS(41), 1, + aux_sym_catch_statement_token1, + ACTIONS(43), 1, + aux_sym_finally_statement_token1, + ACTIONS(45), 1, + aux_sym_accumulate_statement_token1, + ACTIONS(305), 1, + ts_builtin_sym_end, + STATE(64), 1, + aux_sym_source_code_repeat1, + STATE(428), 1, + sym__statement, + STATE(1156), 1, + sym_function_call, + STATE(1157), 1, + sym_assignment, + STATE(66), 2, sym_comment, sym_include, - aux_sym_source_code_repeat1, - STATE(432), 3, + STATE(431), 2, + sym_if_do_statement, + sym_if_then_statement, + STATE(435), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(434), 3, sym_repeat_statement, sym_do_while_statement, sym_do_statement, - STATE(438), 24, + STATE(430), 24, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -18422,21 +18429,22 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_statement, sym_finally_statement, sym_accumulate_statement, - [8254] = 6, + [8254] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(315), 1, sym__namedot, + STATE(68), 1, + aux_sym_qualified_name_repeat1, + STATE(67), 2, + sym_comment, + sym_include, ACTIONS(309), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(67), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, ACTIONS(307), 45, sym__terminator, anon_sym_LPAREN, @@ -18483,23 +18491,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [8321] = 7, + [8323] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(321), 1, sym__namedot, - STATE(67), 1, - aux_sym_qualified_name_repeat1, - STATE(68), 2, - sym_comment, - sym_include, - ACTIONS(320), 3, + ACTIONS(319), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(318), 45, + STATE(68), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(317), 45, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -18553,11 +18560,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(69), 2, sym_comment, sym_include, - ACTIONS(309), 3, + ACTIONS(319), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(307), 46, + ACTIONS(317), 46, sym__namedot, sym__terminator, anon_sym_LPAREN, @@ -18894,128 +18901,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [8769] = 9, + [8769] = 26, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(137), 1, - sym__logical_operator, - STATE(138), 1, - sym__additive_operator, - STATE(139), 1, - sym__multiplicative_operator, - STATE(140), 1, - sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(75), 2, - sym_comment, - sym_include, - ACTIONS(344), 41, + ACTIONS(344), 1, sym_identifier, + ACTIONS(346), 1, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(352), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(354), 1, aux_sym_unary_expression_token1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, + ACTIONS(366), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, + ACTIONS(368), 1, anon_sym_DQUOTE, + ACTIONS(370), 1, anon_sym_SQUOTE, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, + STATE(85), 1, + sym__expression, + STATE(96), 1, + aux_sym_abl_statement_repeat1, + ACTIONS(348), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8839] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(137), 1, - sym__logical_operator, - STATE(138), 1, - sym__additive_operator, - STATE(139), 1, - sym__multiplicative_operator, - STATE(140), 1, - sym__comparison_operator, - STATE(76), 2, + STATE(75), 2, sym_comment, sym_include, - ACTIONS(348), 43, - sym_identifier, - sym__terminator, - sym_null_expression, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + STATE(227), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(220), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [8873] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(352), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(354), 1, aux_sym_unary_expression_token1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, + ACTIONS(366), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, + ACTIONS(368), 1, anon_sym_DQUOTE, + ACTIONS(370), 1, anon_sym_SQUOTE, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, + ACTIONS(380), 1, + sym__terminator, + STATE(85), 1, + sym__expression, + STATE(100), 1, + aux_sym_abl_statement_repeat1, + ACTIONS(348), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8907] = 12, + STATE(76), 2, + sym_comment, + sym_include, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(227), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(220), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [8977] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19028,19 +19070,19 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(77), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19056,7 +19098,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(350), 22, + ACTIONS(382), 22, sym_identifier, sym__terminator, sym_null_expression, @@ -19079,7 +19121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [8983] = 12, + [9053] = 11, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19092,19 +19134,16 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(78), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19120,7 +19159,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(358), 22, + ACTIONS(392), 24, sym_identifier, sym__terminator, sym_null_expression, @@ -19129,6 +19168,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -19143,45 +19184,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9059] = 11, + [9127] = 9, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(137), 1, - sym__logical_operator, - STATE(138), 1, - sym__additive_operator, - STATE(139), 1, - sym__multiplicative_operator, - STATE(140), 1, - sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(354), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(396), 1, + anon_sym_LPAREN, + ACTIONS(398), 1, + aux_sym_object_access_token1, + ACTIONS(400), 1, + sym__namedot, + STATE(107), 1, + aux_sym_qualified_name_repeat1, + STATE(108), 1, + aux_sym_object_access_repeat1, STATE(79), 2, sym_comment, sym_include, - ACTIONS(356), 15, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - ACTIONS(360), 24, + ACTIONS(394), 42, sym_identifier, sym__terminator, sym_null_expression, @@ -19189,7 +19210,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, @@ -19198,6 +19218,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_current_changed_expression_token1, aux_sym_locked_expression_token1, aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, sym_number_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -19206,7 +19245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9133] = 12, + [9197] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19219,19 +19258,19 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(80), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19247,7 +19286,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(362), 22, + ACTIONS(402), 22, sym_identifier, sym__terminator, sym_null_expression, @@ -19270,25 +19309,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9209] = 9, + [9273] = 9, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(368), 1, - aux_sym_object_access_token1, - ACTIONS(370), 1, - sym__namedot, - STATE(107), 1, - aux_sym_object_access_repeat1, - STATE(108), 1, - aux_sym_qualified_name_repeat1, + STATE(137), 1, + sym__logical_operator, + STATE(138), 1, + sym__additive_operator, + STATE(139), 1, + sym__multiplicative_operator, + STATE(140), 1, + sym__comparison_operator, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(81), 2, sym_comment, sym_include, - ACTIONS(364), 42, + ACTIONS(404), 41, sym_identifier, sym__terminator, sym_null_expression, @@ -19296,6 +19336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, @@ -19306,8 +19347,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19331,179 +19370,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9279] = 24, + [9343] = 9, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, - ACTIONS(53), 1, + ACTIONS(396), 1, anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(87), 1, - aux_sym_accumulate_expression_token1, - STATE(290), 1, - sym__expression, - ACTIONS(49), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(89), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, + ACTIONS(398), 1, + aux_sym_object_access_token1, + ACTIONS(400), 1, + sym__namedot, + STATE(107), 1, + aux_sym_qualified_name_repeat1, + STATE(108), 1, + aux_sym_object_access_repeat1, STATE(82), 2, sym_comment, sym_include, - ACTIONS(372), 3, + ACTIONS(406), 42, + sym_identifier, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - ACTIONS(51), 4, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(241), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [9379] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(376), 1, - sym__terminator, - ACTIONS(382), 1, - anon_sym_LPAREN, - ACTIONS(384), 1, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, - ACTIONS(386), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, aux_sym_input_expression_token1, - ACTIONS(396), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, anon_sym_EQ, - ACTIONS(398), 1, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, anon_sym_DQUOTE, - ACTIONS(400), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, aux_sym_accumulate_expression_token1, - STATE(85), 1, - sym__expression, - STATE(96), 1, - aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(408), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(83), 2, - sym_comment, - sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(223), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(197), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [9483] = 9, + [9413] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(366), 1, - anon_sym_LPAREN, - ACTIONS(368), 1, - aux_sym_object_access_token1, - ACTIONS(370), 1, - sym__namedot, - STATE(107), 1, - aux_sym_object_access_repeat1, - STATE(108), 1, - aux_sym_qualified_name_repeat1, - STATE(84), 2, + STATE(137), 1, + sym__logical_operator, + STATE(138), 1, + sym__additive_operator, + STATE(139), 1, + sym__multiplicative_operator, + STATE(140), 1, + sym__comparison_operator, + STATE(83), 2, sym_comment, sym_include, - ACTIONS(410), 42, + ACTIONS(408), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -19511,6 +19455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, @@ -19546,7 +19491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9553] = 12, + [9481] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19559,19 +19504,83 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, + ACTIONS(384), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(352), 2, + STATE(84), 2, + sym_comment, + sym_include, + ACTIONS(390), 15, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + ACTIONS(410), 22, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [9557] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(137), 1, + sym__logical_operator, + STATE(138), 1, + sym__additive_operator, + STATE(139), 1, + sym__multiplicative_operator, + STATE(140), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(85), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19610,68 +19619,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9629] = 26, + [9633] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(382), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(384), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(396), 1, - anon_sym_EQ, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(414), 1, - sym__terminator, - STATE(85), 1, + STATE(282), 1, sym__expression, - STATE(105), 1, - aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(86), 2, sym_comment, sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(414), 3, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -19688,69 +19695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9733] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(137), 1, - sym__logical_operator, - STATE(138), 1, - sym__additive_operator, - STATE(139), 1, - sym__multiplicative_operator, - STATE(140), 1, - sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(354), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(87), 2, - sym_comment, - sym_include, - ACTIONS(416), 39, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [9805] = 12, + [9733] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19763,19 +19708,19 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(88), 2, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(87), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19791,7 +19736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(418), 22, + ACTIONS(416), 22, sym_identifier, sym__terminator, sym_null_expression, @@ -19814,7 +19759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9881] = 12, + [9809] = 10, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19827,19 +19772,32 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(89), 2, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(88), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(418), 39, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19855,21 +19813,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(420), 22, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, sym_number_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -19878,7 +19821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [9957] = 12, + [9881] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -19891,19 +19834,19 @@ static const uint16_t ts_small_parse_table[] = { sym__multiplicative_operator, STATE(140), 1, sym__comparison_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(90), 2, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(89), 2, sym_comment, sym_include, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -19919,7 +19862,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(422), 22, + ACTIONS(420), 22, sym_identifier, sym__terminator, sym_null_expression, @@ -19942,68 +19885,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [10033] = 26, + [9957] = 26, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(382), 1, + ACTIONS(352), 1, anon_sym_LPAREN, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(396), 1, + ACTIONS(366), 1, anon_sym_EQ, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(424), 1, + ACTIONS(422), 1, sym__terminator, STATE(85), 1, sym__expression, - STATE(97), 1, + STATE(99), 1, aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(91), 2, + STATE(90), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20020,68 +19963,132 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, + [10061] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(137), 1, + sym__logical_operator, + STATE(138), 1, + sym__additive_operator, + STATE(139), 1, + sym__multiplicative_operator, + STATE(140), 1, + sym__comparison_operator, + ACTIONS(384), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(91), 2, + sym_comment, + sym_include, + ACTIONS(390), 15, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + ACTIONS(424), 22, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, [10137] = 26, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(382), 1, + ACTIONS(352), 1, anon_sym_LPAREN, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(396), 1, + ACTIONS(366), 1, anon_sym_EQ, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, ACTIONS(426), 1, sym__terminator, STATE(85), 1, sym__expression, - STATE(94), 1, + STATE(97), 1, aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(92), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20103,63 +20110,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(382), 1, + ACTIONS(352), 1, anon_sym_LPAREN, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(396), 1, + ACTIONS(366), 1, anon_sym_EQ, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, ACTIONS(428), 1, sym__terminator, STATE(85), 1, sym__expression, - STATE(102), 1, + STATE(103), 1, aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(93), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20181,61 +20188,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(430), 1, - sym__terminator, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(85), 1, + ACTIONS(155), 1, + anon_sym_RPAREN, + STATE(287), 1, sym__expression, - STATE(99), 1, - aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + STATE(1101), 1, + sym_function_call_argument, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(94), 2, sym_comment, sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20283,11 +20290,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(155), 1, + ACTIONS(430), 1, anon_sym_RPAREN, - STATE(291), 1, + STATE(284), 1, sym__expression, - STATE(980), 1, + STATE(1022), 1, sym_function_call_argument, ACTIONS(49), 2, sym_null_expression, @@ -20306,12 +20313,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20333,61 +20340,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(434), 1, sym__terminator, + ACTIONS(434), 1, + anon_sym_LPAREN, STATE(85), 1, sym__expression, - STATE(99), 1, + STATE(104), 1, aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(96), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20409,61 +20416,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, + ACTIONS(434), 1, anon_sym_LPAREN, ACTIONS(436), 1, sym__terminator, STATE(85), 1, sym__expression, - STATE(99), 1, + STATE(104), 1, aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(97), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20511,11 +20518,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(155), 1, + ACTIONS(438), 1, anon_sym_RPAREN, - STATE(295), 1, + STATE(284), 1, sym__expression, - STATE(980), 1, + STATE(1033), 1, sym_function_call_argument, ACTIONS(49), 2, sym_null_expression, @@ -20534,12 +20541,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20556,65 +20563,66 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10850] = 24, + [10850] = 25, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(438), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(441), 1, - sym__terminator, - ACTIONS(449), 1, - anon_sym_LPAREN, - ACTIONS(452), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(455), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(458), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(461), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(464), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(467), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(470), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(473), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(476), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(479), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(482), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(440), 1, + sym__terminator, STATE(85), 1, sym__expression, - ACTIONS(443), 2, + STATE(104), 1, + aux_sym_abl_statement_repeat1, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(485), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(99), 3, + STATE(99), 2, sym_comment, sym_include, - aux_sym_abl_statement_repeat1, - ACTIONS(446), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20631,66 +20639,66 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10949] = 25, + [10951] = 25, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(488), 1, - anon_sym_RPAREN, - STATE(295), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(442), 1, + sym__terminator, + STATE(85), 1, sym__expression, - STATE(1019), 1, - sym_function_call_argument, - ACTIONS(49), 2, + STATE(104), 1, + aux_sym_abl_statement_repeat1, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(100), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20707,7 +20715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11050] = 25, + [11052] = 25, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -20738,11 +20746,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(490), 1, + ACTIONS(444), 1, anon_sym_RPAREN, - STATE(295), 1, + STATE(284), 1, sym__expression, - STATE(983), 1, + STATE(986), 1, sym_function_call_argument, ACTIONS(49), 2, sym_null_expression, @@ -20761,12 +20769,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20783,66 +20791,66 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11151] = 25, + [11153] = 25, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, - sym__terminator, - STATE(85), 1, + ACTIONS(155), 1, + anon_sym_RPAREN, + STATE(284), 1, sym__expression, - STATE(99), 1, - aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + STATE(1101), 1, + sym_function_call_argument, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(102), 2, sym_comment, sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20859,66 +20867,66 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11252] = 25, + [11254] = 25, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(494), 1, - anon_sym_RPAREN, - STATE(295), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(446), 1, + sym__terminator, + STATE(85), 1, sym__expression, - STATE(1030), 1, - sym_function_call_argument, - ACTIONS(49), 2, + STATE(104), 1, + aux_sym_abl_statement_repeat1, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(103), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -20935,66 +20943,65 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11353] = 25, + [11355] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(448), 1, sym_identifier, - ACTIONS(53), 1, + ACTIONS(451), 1, + sym__terminator, + ACTIONS(459), 1, anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(462), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(465), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(468), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(471), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(474), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(477), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(480), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(483), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(486), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(489), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(492), 1, aux_sym_accumulate_expression_token1, - ACTIONS(496), 1, - anon_sym_RPAREN, - STATE(295), 1, + STATE(85), 1, sym__expression, - STATE(1041), 1, - sym_function_call_argument, - ACTIONS(49), 2, + ACTIONS(453), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(495), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(104), 2, + STATE(104), 3, sym_comment, sym_include, - ACTIONS(51), 4, + aux_sym_abl_statement_repeat1, + ACTIONS(456), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21016,61 +21023,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, ACTIONS(498), 1, - sym__terminator, - STATE(85), 1, + anon_sym_RPAREN, + STATE(284), 1, sym__expression, - STATE(99), 1, - aux_sym_abl_statement_repeat1, - ACTIONS(378), 2, + STATE(1161), 1, + sym_function_call_argument, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(105), 2, sym_comment, sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21087,18 +21094,17 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11555] = 6, + [11555] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(370), 1, - sym__namedot, - STATE(108), 1, - aux_sym_qualified_name_repeat1, - STATE(106), 2, + ACTIONS(502), 1, + aux_sym_object_access_token1, + STATE(106), 3, sym_comment, sym_include, + aux_sym_object_access_repeat1, ACTIONS(500), 43, sym_identifier, sym__terminator, @@ -21143,19 +21149,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11617] = 6, + [11615] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(368), 1, - aux_sym_object_access_token1, - STATE(110), 1, - aux_sym_object_access_repeat1, + ACTIONS(400), 1, + sym__namedot, + STATE(116), 1, + aux_sym_qualified_name_repeat1, STATE(107), 2, sym_comment, sym_include, - ACTIONS(502), 43, + ACTIONS(309), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -21199,19 +21205,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11679] = 6, + [11677] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(370), 1, - sym__namedot, - STATE(111), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(398), 1, + aux_sym_object_access_token1, + STATE(106), 1, + aux_sym_object_access_repeat1, STATE(108), 2, sym_comment, sym_include, - ACTIONS(320), 43, + ACTIONS(505), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -21255,7 +21261,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11741] = 24, + [11739] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -21286,9 +21292,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(504), 1, + ACTIONS(507), 1, sym__terminator, - STATE(325), 1, + STATE(329), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -21307,12 +21313,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21329,73 +21335,93 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11839] = 5, + [11837] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(508), 1, - aux_sym_object_access_token1, - STATE(110), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(506), 43, + ACTIONS(47), 1, sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(53), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(57), 1, aux_sym_unary_expression_token1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, + ACTIONS(69), 1, anon_sym_DQUOTE, + ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, + ACTIONS(509), 1, + sym__terminator, + STATE(301), 1, + sym__expression, + ACTIONS(49), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11899] = 5, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(110), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(248), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(249), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [11935] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(511), 1, + ACTIONS(400), 1, sym__namedot, - STATE(111), 3, + STATE(107), 1, + aux_sym_qualified_name_repeat1, + STATE(111), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(309), 43, + ACTIONS(511), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -21439,93 +21465,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [11959] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(87), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(514), 1, - sym__terminator, - STATE(327), 1, - sym__expression, - ACTIONS(49), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(89), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(112), 2, - sym_comment, - sym_include, - ACTIONS(51), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(243), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(241), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [12057] = 6, + [11997] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(370), 1, + ACTIONS(400), 1, sym__namedot, - STATE(108), 1, + STATE(107), 1, aux_sym_qualified_name_repeat1, - STATE(113), 2, + STATE(112), 2, sym_comment, sym_include, - ACTIONS(516), 43, + ACTIONS(513), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -21569,7 +21521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12119] = 24, + [12059] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -21600,9 +21552,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(518), 1, + ACTIONS(515), 1, sym__terminator, - STATE(329), 1, + STATE(335), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -21613,7 +21565,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(114), 2, + STATE(113), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -21621,12 +21573,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21643,7 +21595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12217] = 24, + [12157] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -21674,9 +21626,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(520), 1, + ACTIONS(517), 1, sym__terminator, - STATE(335), 1, + STATE(305), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -21687,7 +21639,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(115), 2, + STATE(114), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -21695,12 +21647,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21717,7 +21669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12315] = 24, + [12255] = 24, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -21748,9 +21700,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(522), 1, + ACTIONS(519), 1, sym__terminator, - STATE(323), 1, + STATE(315), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -21761,7 +21713,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(116), 2, + STATE(115), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -21769,12 +21721,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -21791,17 +21743,18 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12413] = 5, + [12353] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(366), 1, - anon_sym_LPAREN, - STATE(117), 2, + ACTIONS(521), 1, + sym__namedot, + STATE(116), 3, sym_comment, sym_include, - ACTIONS(524), 43, + aux_sym_qualified_name_repeat1, + ACTIONS(319), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -21809,6 +21762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, + anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, @@ -21840,195 +21794,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym_if_do_statement_token1, - aux_sym_object_access_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [12472] = 7, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(118), 2, - sym_comment, - sym_include, - ACTIONS(500), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(526), 39, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - anon_sym_COLON, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym__using_first_token1, - [12535] = 23, + [12413] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(384), 1, - aux_sym_unary_expression_token1, - ACTIONS(386), 1, - aux_sym_unary_expression_token2, - ACTIONS(388), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, - aux_sym_locked_expression_token1, - ACTIONS(394), 1, - aux_sym_input_expression_token1, - ACTIONS(398), 1, - anon_sym_DQUOTE, - ACTIONS(400), 1, - anon_sym_SQUOTE, - ACTIONS(402), 1, - aux_sym_if_do_statement_token1, - ACTIONS(404), 1, - aux_sym_can_find_expression_token1, - ACTIONS(406), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - STATE(77), 1, - sym__expression, - ACTIONS(378), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(408), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(119), 2, - sym_comment, - sym_include, - STATE(232), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(380), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(223), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(197), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [12630] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - sym_identifier, - ACTIONS(384), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(88), 1, + STATE(291), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(120), 2, + STATE(117), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22045,7 +21870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12725] = 23, + [12508] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -22076,7 +21901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(317), 1, + STATE(333), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22087,7 +21912,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(121), 2, + STATE(118), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22095,12 +21920,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22117,7 +21942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12820] = 23, + [12603] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -22148,7 +21973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(301), 1, + STATE(200), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22159,7 +21984,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(122), 2, + STATE(119), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22167,12 +21992,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22189,110 +22014,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12915] = 23, + [12698] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, - aux_sym_accumulate_expression_token1, - STATE(275), 1, - sym__expression, - ACTIONS(49), 2, - sym_null_expression, - sym_number_literal, - ACTIONS(89), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(123), 2, - sym_comment, - sym_include, - ACTIONS(51), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(243), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(241), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [13010] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_LPAREN, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, + aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - aux_sym_unary_expression_token1, - ACTIONS(532), 1, - aux_sym_unary_expression_token2, - ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, - aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(274), 1, + STATE(304), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22303,7 +22056,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(124), 2, + STATE(120), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22311,12 +22064,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22333,38 +22086,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13105] = 23, + [12793] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(57), 1, + aux_sym_unary_expression_token1, + ACTIONS(59), 1, + aux_sym_unary_expression_token2, + ACTIONS(61), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, + aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, + aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - aux_sym_unary_expression_token1, - ACTIONS(532), 1, - aux_sym_unary_expression_token2, - ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, - aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(273), 1, + STATE(302), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22375,7 +22128,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(125), 2, + STATE(121), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22383,12 +22136,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22405,7 +22158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13200] = 23, + [12888] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -22420,23 +22173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(272), 1, + STATE(268), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22447,7 +22200,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(126), 2, + STATE(122), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22455,12 +22208,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22477,11 +22230,13 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13295] = 23, + [12983] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, ACTIONS(57), 1, @@ -22506,9 +22261,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(544), 1, - sym_identifier, - STATE(302), 1, + STATE(319), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22519,7 +22272,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(127), 2, + STATE(123), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22527,12 +22280,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22549,38 +22302,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13390] = 23, + [13078] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(556), 1, + sym_identifier, + ACTIONS(558), 1, + aux_sym_unary_expression_token1, + ACTIONS(560), 1, + aux_sym_unary_expression_token2, + ACTIONS(562), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(564), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(566), 1, + aux_sym_locked_expression_token1, + ACTIONS(568), 1, + aux_sym_if_do_statement_token1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(209), 1, + STATE(269), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22591,7 +22344,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(128), 2, + STATE(124), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22599,12 +22352,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22621,7 +22374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13485] = 23, + [13173] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -22652,7 +22405,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(309), 1, + STATE(306), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22663,7 +22416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(129), 2, + STATE(125), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22671,12 +22424,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22693,62 +22446,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13580] = 23, + [13268] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(78), 1, + STATE(289), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(130), 2, + STATE(126), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22765,62 +22518,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13675] = 23, + [13363] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(89), 1, + STATE(303), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(131), 2, - sym_comment, - sym_include, - STATE(232), 2, + STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + STATE(127), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22837,94 +22590,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13770] = 7, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(132), 2, - sym_comment, - sym_include, - ACTIONS(516), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(546), 39, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - anon_sym_COLON, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym__using_first_token1, - [13833] = 23, + [13458] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(556), 1, + sym_identifier, + ACTIONS(558), 1, + aux_sym_unary_expression_token1, + ACTIONS(560), 1, + aux_sym_unary_expression_token2, + ACTIONS(562), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(564), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(566), 1, + aux_sym_locked_expression_token1, + ACTIONS(568), 1, + aux_sym_if_do_statement_token1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(310), 1, + STATE(270), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -22935,7 +22632,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(133), 2, + STATE(128), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -22943,12 +22640,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -22965,62 +22662,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13928] = 23, + [13553] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(312), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(80), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(134), 2, + STATE(129), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23037,62 +22734,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14023] = 23, + [13648] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(319), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(87), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(135), 2, + STATE(130), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23109,62 +22806,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14118] = 23, + [13743] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(321), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(89), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(136), 2, + STATE(131), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23181,62 +22878,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14213] = 23, + [13838] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(67), 1, + aux_sym_input_expression_token1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(81), 1, + aux_sym_can_find_expression_token1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, - aux_sym_input_expression_token1, - ACTIONS(398), 1, - anon_sym_DQUOTE, - ACTIONS(400), 1, - anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, - aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(90), 1, + STATE(272), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(137), 2, - sym_comment, - sym_include, - STATE(232), 2, + STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + STATE(132), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23253,62 +22950,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14308] = 23, + [13933] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(75), 1, + STATE(321), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(138), 2, - sym_comment, - sym_include, - STATE(232), 2, + STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + STATE(133), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23325,62 +23022,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14403] = 23, + [14028] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - STATE(76), 1, + STATE(77), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(139), 2, + STATE(134), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23397,62 +23094,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14498] = 23, + [14123] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(87), 1, + STATE(312), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(140), 2, - sym_comment, - sym_include, - STATE(232), 2, + STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + STATE(135), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23469,62 +23166,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14593] = 23, + [14218] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(305), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(78), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(141), 2, + STATE(136), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23541,62 +23238,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14688] = 23, + [14313] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(300), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(84), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(142), 2, + STATE(137), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23613,62 +23310,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14783] = 23, + [14408] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, + ACTIONS(434), 1, anon_sym_LPAREN, - STATE(79), 1, + STATE(81), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(143), 2, + STATE(138), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23685,62 +23382,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14878] = 23, + [14503] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(364), 1, + aux_sym_input_expression_token1, + ACTIONS(368), 1, + anon_sym_DQUOTE, + ACTIONS(370), 1, + anon_sym_SQUOTE, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(374), 1, + aux_sym_can_find_expression_token1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(271), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(83), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(144), 2, + STATE(139), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23757,62 +23454,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14973] = 23, + [14598] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(313), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(88), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(145), 2, + STATE(140), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(222), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23829,7 +23526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15068] = 23, + [14693] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -23844,23 +23541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(266), 1, + STATE(265), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -23871,7 +23568,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(146), 2, + STATE(141), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -23879,12 +23576,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23901,7 +23598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15163] = 23, + [14788] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -23916,23 +23613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(270), 1, + STATE(266), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -23943,7 +23640,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(147), 2, + STATE(142), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -23951,12 +23648,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -23973,38 +23670,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15258] = 23, + [14883] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(57), 1, + aux_sym_unary_expression_token1, + ACTIONS(59), 1, + aux_sym_unary_expression_token2, + ACTIONS(61), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, + aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, + aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - aux_sym_unary_expression_token1, - ACTIONS(532), 1, - aux_sym_unary_expression_token2, - ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, - aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(268), 1, + STATE(328), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24015,7 +23712,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(148), 2, + STATE(143), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24023,12 +23720,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24045,38 +23742,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15353] = 23, + [14978] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(556), 1, + sym_identifier, + ACTIONS(558), 1, + aux_sym_unary_expression_token1, + ACTIONS(560), 1, + aux_sym_unary_expression_token2, + ACTIONS(562), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(564), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(566), 1, + aux_sym_locked_expression_token1, + ACTIONS(568), 1, + aux_sym_if_do_statement_token1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(333), 1, + STATE(274), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24087,7 +23784,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(149), 2, + STATE(144), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24095,12 +23792,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24117,7 +23814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15448] = 23, + [15073] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24132,21 +23829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, STATE(267), 1, sym__expression, @@ -24159,7 +23856,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(150), 2, + STATE(145), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24167,12 +23864,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24189,38 +23886,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15543] = 23, + [15168] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(57), 1, + aux_sym_unary_expression_token1, + ACTIONS(59), 1, + aux_sym_unary_expression_token2, + ACTIONS(61), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, + aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, + aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - aux_sym_unary_expression_token1, - ACTIONS(532), 1, - aux_sym_unary_expression_token2, - ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, - aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(269), 1, + STATE(320), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24231,7 +23928,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(151), 2, + STATE(146), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24239,12 +23936,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24261,38 +23958,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15638] = 23, + [15263] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(47), 1, + sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(57), 1, + aux_sym_unary_expression_token1, + ACTIONS(59), 1, + aux_sym_unary_expression_token2, + ACTIONS(61), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, + aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, + aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, - sym_identifier, - ACTIONS(530), 1, - aux_sym_unary_expression_token1, - ACTIONS(532), 1, - aux_sym_unary_expression_token2, - ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, - aux_sym_locked_expression_token1, - ACTIONS(540), 1, - aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(338), 1, + STATE(336), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24303,7 +24000,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(152), 2, + STATE(147), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24311,12 +24008,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24333,7 +24030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15733] = 23, + [15358] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24364,7 +24061,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(314), 1, + STATE(298), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24375,7 +24072,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(153), 2, + STATE(148), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24383,12 +24080,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24405,60 +24102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15828] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(154), 2, - sym_comment, - sym_include, - ACTIONS(548), 44, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_object_access_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [15885] = 23, + [15453] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24489,7 +24133,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(296), 1, + STATE(307), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24500,7 +24144,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(155), 2, + STATE(149), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24508,12 +24152,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24530,38 +24174,38 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15980] = 23, + [15548] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(57), 1, - aux_sym_unary_expression_token1, - ACTIONS(59), 1, - aux_sym_unary_expression_token2, - ACTIONS(61), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, - aux_sym_locked_expression_token1, ACTIONS(67), 1, aux_sym_input_expression_token1, ACTIONS(69), 1, anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, - aux_sym_if_do_statement_token1, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(556), 1, + sym_identifier, + ACTIONS(558), 1, + aux_sym_unary_expression_token1, + ACTIONS(560), 1, + aux_sym_unary_expression_token2, + ACTIONS(562), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(564), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(566), 1, + aux_sym_locked_expression_token1, + ACTIONS(568), 1, + aux_sym_if_do_statement_token1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(306), 1, + STATE(273), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24572,7 +24216,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(156), 2, + STATE(150), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24580,12 +24224,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24602,7 +24246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16075] = 23, + [15643] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24633,7 +24277,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(303), 1, + STATE(219), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24644,7 +24288,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(157), 2, + STATE(151), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24652,12 +24296,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24674,7 +24318,63 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16170] = 23, + [15738] = 7, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(152), 2, + sym_comment, + sym_include, + ACTIONS(513), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(572), 39, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + anon_sym_COLON, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym__using_first_token1, + [15801] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24705,7 +24405,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(207), 1, + STATE(208), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24716,7 +24416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(158), 2, + STATE(153), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24724,12 +24424,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24746,7 +24446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16265] = 23, + [15896] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24777,7 +24477,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(208), 1, + STATE(308), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24788,7 +24488,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(159), 2, + STATE(154), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24796,12 +24496,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24818,7 +24518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16360] = 23, + [15991] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24833,23 +24533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(556), 1, sym_identifier, - ACTIONS(530), 1, + ACTIONS(558), 1, aux_sym_unary_expression_token1, - ACTIONS(532), 1, + ACTIONS(560), 1, aux_sym_unary_expression_token2, - ACTIONS(534), 1, + ACTIONS(562), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(536), 1, + ACTIONS(564), 1, aux_sym_current_changed_expression_token1, - ACTIONS(538), 1, + ACTIONS(566), 1, aux_sym_locked_expression_token1, - ACTIONS(540), 1, + ACTIONS(568), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(265), 1, + STATE(271), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24860,7 +24560,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(160), 2, + STATE(155), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24868,12 +24568,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24890,7 +24590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16455] = 23, + [16086] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24921,7 +24621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(213), 1, + STATE(206), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -24932,7 +24632,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(161), 2, + STATE(156), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -24940,12 +24640,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -24962,7 +24662,132 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16550] = 23, + [16181] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(157), 2, + sym_comment, + sym_include, + ACTIONS(574), 44, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_object_access_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [16238] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, + aux_sym_unary_expression_token1, + ACTIONS(534), 1, + aux_sym_unary_expression_token2, + ACTIONS(536), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(538), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(540), 1, + aux_sym_locked_expression_token1, + ACTIONS(542), 1, + aux_sym_input_expression_token1, + ACTIONS(544), 1, + anon_sym_DQUOTE, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, + aux_sym_if_do_statement_token1, + ACTIONS(550), 1, + aux_sym_can_find_expression_token1, + ACTIONS(552), 1, + aux_sym_accumulate_expression_token1, + STATE(288), 1, + sym__expression, + ACTIONS(526), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(554), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(158), 2, + sym_comment, + sym_include, + STATE(372), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(528), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(352), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(374), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [16333] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -24993,7 +24818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(318), 1, + STATE(337), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25004,7 +24829,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(162), 2, + STATE(159), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25012,12 +24837,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25034,7 +24859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16645] = 23, + [16428] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25065,7 +24890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(204), 1, + STATE(316), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25076,7 +24901,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(163), 2, + STATE(160), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25084,12 +24909,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25106,13 +24931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16740] = 23, + [16523] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, ACTIONS(57), 1, @@ -25137,7 +24960,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(201), 1, + ACTIONS(576), 1, + sym_identifier, + STATE(326), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25148,7 +24973,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(164), 2, + STATE(161), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25156,12 +24981,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25178,7 +25003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16835] = 23, + [16618] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25209,7 +25034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(218), 1, + STATE(325), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25220,7 +25045,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(165), 2, + STATE(162), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25228,12 +25053,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25250,7 +25075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16930] = 23, + [16713] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25281,7 +25106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(230), 1, + STATE(297), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25292,7 +25117,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(166), 2, + STATE(163), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25300,12 +25125,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25322,15 +25147,23 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17025] = 23, + [16808] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(67), 1, + aux_sym_input_expression_token1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(81), 1, + aux_sym_can_find_expression_token1, + ACTIONS(556), 1, + sym_identifier, ACTIONS(558), 1, aux_sym_unary_expression_token1, ACTIONS(560), 1, @@ -25342,42 +25175,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(566), 1, aux_sym_locked_expression_token1, ACTIONS(568), 1, - aux_sym_input_expression_token1, - ACTIONS(570), 1, - anon_sym_DQUOTE, - ACTIONS(572), 1, - anon_sym_SQUOTE, - ACTIONS(574), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, - aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(294), 1, + STATE(311), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(167), 2, - sym_comment, - sym_include, - STATE(365), 2, + STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(554), 4, + STATE(164), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25394,62 +25219,118 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17120] = 23, + [16903] = 7, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(165), 2, + sym_comment, + sym_include, + ACTIONS(511), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(578), 39, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + anon_sym_COLON, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym__using_first_token1, + [16966] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(53), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(200), 1, + STATE(295), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(168), 2, + STATE(166), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(372), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25466,7 +25347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17215] = 23, + [17061] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25497,7 +25378,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(307), 1, + STATE(205), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25508,7 +25389,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(169), 2, + STATE(167), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25516,12 +25397,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25538,7 +25419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17310] = 23, + [17156] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25569,7 +25450,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(219), 1, + STATE(213), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25580,7 +25461,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(170), 2, + STATE(168), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25588,12 +25469,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25610,7 +25491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17405] = 23, + [17251] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25641,7 +25522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(299), 1, + STATE(202), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25652,7 +25533,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(171), 2, + STATE(169), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -25660,12 +25541,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25682,134 +25563,223 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17500] = 23, + [17346] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + STATE(170), 2, + sym_comment, + sym_include, + ACTIONS(580), 44, sym_identifier, - ACTIONS(53), 1, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, anon_sym_LPAREN, - ACTIONS(57), 1, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, aux_sym_unary_expression_token1, - ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, anon_sym_DQUOTE, - ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + aux_sym_object_access_token1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(328), 1, - sym__expression, - ACTIONS(49), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [17403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(396), 1, + anon_sym_LPAREN, + STATE(171), 2, + sym_comment, + sym_include, + ACTIONS(582), 43, + sym_identifier, + sym__terminator, sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, sym_number_literal, - ACTIONS(89), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_object_access_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, + [17462] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(317), 1, + sym__namedot, STATE(172), 2, sym_comment, sym_include, - ACTIONS(51), 4, + ACTIONS(319), 43, + sym_identifier, + sym__terminator, + sym_null_expression, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(241), 16, - sym_qualified_name, - sym_boolean_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym__string_literal, - sym_function_call, - sym_ternary_expression, - sym_object_access, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [17595] = 23, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [17521] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(344), 1, sym_identifier, - ACTIONS(556), 1, - anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(354), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(356), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(358), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(360), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(362), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(364), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(368), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(370), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(372), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(374), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(376), 1, aux_sym_accumulate_expression_token1, - STATE(293), 1, + ACTIONS(434), 1, + anon_sym_LPAREN, + STATE(91), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(348), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(378), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(173), 2, sym_comment, sym_include, - STATE(365), 2, + STATE(222), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(350), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(227), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(220), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25826,7 +25796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17690] = 23, + [17616] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -25857,7 +25827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(324), 1, + STATE(211), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -25876,12 +25846,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25898,62 +25868,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17785] = 23, + [17711] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(384), 1, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(386), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(388), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(390), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(392), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(394), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(398), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(400), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(402), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(404), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(406), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - STATE(80), 1, + STATE(294), 1, sym__expression, - ACTIONS(378), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(408), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(175), 2, sym_comment, sym_include, - STATE(232), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(380), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(223), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(197), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -25970,7 +25940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17880] = 23, + [17806] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -26001,7 +25971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(339), 1, + STATE(215), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -26020,12 +25990,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26042,7 +26012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17975] = 23, + [17901] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -26073,7 +26043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(330), 1, + STATE(299), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -26092,12 +26062,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26114,62 +26084,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18070] = 23, + [17996] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(53), 1, + ACTIONS(524), 1, + sym_identifier, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - ACTIONS(582), 1, - sym_identifier, - STATE(316), 1, + STATE(292), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(178), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(372), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26186,115 +26156,134 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18165] = 4, + [18091] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(179), 2, - sym_comment, - sym_include, - ACTIONS(584), 44, + ACTIONS(47), 1, sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(53), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(57), 1, aux_sym_unary_expression_token1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, + ACTIONS(69), 1, anon_sym_DQUOTE, + ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - aux_sym_object_access_token1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, + STATE(334), 1, + sym__expression, + ACTIONS(49), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [18222] = 23, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(179), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(248), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(249), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [18186] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(67), 1, - aux_sym_input_expression_token1, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(81), 1, - aux_sym_can_find_expression_token1, - ACTIONS(528), 1, + ACTIONS(524), 1, sym_identifier, ACTIONS(530), 1, - aux_sym_unary_expression_token1, + anon_sym_LPAREN, ACTIONS(532), 1, - aux_sym_unary_expression_token2, + aux_sym_unary_expression_token1, ACTIONS(534), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_unary_expression_token2, ACTIONS(536), 1, - aux_sym_current_changed_expression_token1, + aux_sym_ambiguous_expression_token1, ACTIONS(538), 1, - aux_sym_locked_expression_token1, + aux_sym_current_changed_expression_token1, ACTIONS(540), 1, + aux_sym_locked_expression_token1, + ACTIONS(542), 1, + aux_sym_input_expression_token1, + ACTIONS(544), 1, + anon_sym_DQUOTE, + ACTIONS(546), 1, + anon_sym_SQUOTE, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(542), 1, + ACTIONS(550), 1, + aux_sym_can_find_expression_token1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(315), 1, + STATE(283), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(180), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(372), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26311,7 +26300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18317] = 23, + [18281] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -26361,12 +26350,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26383,62 +26372,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18412] = 23, + [18376] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(288), 1, + STATE(290), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(182), 2, sym_comment, sym_include, - STATE(365), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26455,62 +26444,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18507] = 23, + [18471] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(287), 1, + STATE(209), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(183), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26527,62 +26516,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18602] = 23, + [18566] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(285), 1, + STATE(318), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(184), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26599,62 +26588,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18697] = 23, + [18661] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(284), 1, + STATE(293), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(185), 2, sym_comment, sym_include, - STATE(365), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26671,62 +26660,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18792] = 23, + [18756] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(283), 1, + STATE(296), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(186), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26743,13 +26732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18887] = 23, + [18851] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, - sym_identifier, ACTIONS(53), 1, anon_sym_LPAREN, ACTIONS(57), 1, @@ -26774,7 +26761,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(311), 1, + ACTIONS(584), 1, + sym_identifier, + STATE(331), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -26793,12 +26782,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26815,7 +26804,60 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18982] = 23, + [18946] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(188), 2, + sym_comment, + sym_include, + ACTIONS(586), 44, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_object_access_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [19003] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -26846,7 +26888,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(297), 1, + STATE(310), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -26857,7 +26899,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(188), 2, + STATE(189), 2, sym_comment, sym_include, ACTIONS(51), 4, @@ -26865,12 +26907,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26887,62 +26929,62 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19077] = 23, + [19098] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(53), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(57), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(59), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(61), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(63), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(65), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(67), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(69), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(73), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(81), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(87), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(322), 1, + STATE(286), 1, sym__expression, - ACTIONS(49), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(89), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(189), 2, + STATE(190), 2, sym_comment, sym_include, - ACTIONS(51), 4, + STATE(372), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -26959,60 +27001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19172] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(190), 2, - sym_comment, - sym_include, - ACTIONS(586), 44, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_object_access_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [19229] = 23, + [19193] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -27043,7 +27032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(326), 1, + STATE(322), 1, sym__expression, ACTIONS(49), 2, sym_null_expression, @@ -27062,12 +27051,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(243), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(241), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -27084,116 +27073,134 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19324] = 5, + [19288] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(307), 1, - sym__namedot, - STATE(192), 2, - sym_comment, - sym_include, - ACTIONS(309), 43, + ACTIONS(47), 1, sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, + ACTIONS(53), 1, anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(57), 1, aux_sym_unary_expression_token1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, + ACTIONS(69), 1, anon_sym_DQUOTE, + ACTIONS(71), 1, anon_sym_SQUOTE, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, + STATE(338), 1, + sym__expression, + ACTIONS(49), 2, + sym_null_expression, + sym_number_literal, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(192), 2, + sym_comment, + sym_include, + ACTIONS(51), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(248), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(249), 16, + sym_qualified_name, + sym_boolean_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym__string_literal, + sym_function_call, + sym_ternary_expression, + sym_object_access, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, [19383] = 23, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(47), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(57), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(59), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(61), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(63), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(65), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(67), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(73), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(81), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(87), 1, aux_sym_accumulate_expression_token1, - STATE(282), 1, + STATE(313), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(193), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -27215,10 +27222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(67), 1, + aux_sym_input_expression_token1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(81), 1, + aux_sym_can_find_expression_token1, + ACTIONS(556), 1, + sym_identifier, ACTIONS(558), 1, aux_sym_unary_expression_token1, ACTIONS(560), 1, @@ -27230,42 +27245,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(566), 1, aux_sym_locked_expression_token1, ACTIONS(568), 1, - aux_sym_input_expression_token1, - ACTIONS(570), 1, - anon_sym_DQUOTE, - ACTIONS(572), 1, - anon_sym_SQUOTE, - ACTIONS(574), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, - aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(286), 1, + STATE(324), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(194), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -27287,10 +27294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, + ACTIONS(67), 1, + aux_sym_input_expression_token1, + ACTIONS(69), 1, + anon_sym_DQUOTE, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(81), 1, + aux_sym_can_find_expression_token1, + ACTIONS(556), 1, + sym_identifier, ACTIONS(558), 1, aux_sym_unary_expression_token1, ACTIONS(560), 1, @@ -27302,42 +27317,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(566), 1, aux_sym_locked_expression_token1, ACTIONS(568), 1, - aux_sym_input_expression_token1, - ACTIONS(570), 1, - anon_sym_DQUOTE, - ACTIONS(572), 1, - anon_sym_SQUOTE, - ACTIONS(574), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, - aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(570), 1, aux_sym_accumulate_expression_token1, - STATE(292), 1, + STATE(275), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(49), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(89), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(71), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(195), 2, sym_comment, sym_include, - STATE(365), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(51), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(248), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(249), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -27359,57 +27366,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(550), 1, + ACTIONS(524), 1, sym_identifier, - ACTIONS(556), 1, + ACTIONS(530), 1, anon_sym_LPAREN, - ACTIONS(558), 1, + ACTIONS(532), 1, aux_sym_unary_expression_token1, - ACTIONS(560), 1, + ACTIONS(534), 1, aux_sym_unary_expression_token2, - ACTIONS(562), 1, + ACTIONS(536), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(564), 1, + ACTIONS(538), 1, aux_sym_current_changed_expression_token1, - ACTIONS(566), 1, + ACTIONS(540), 1, aux_sym_locked_expression_token1, - ACTIONS(568), 1, + ACTIONS(542), 1, aux_sym_input_expression_token1, - ACTIONS(570), 1, + ACTIONS(544), 1, anon_sym_DQUOTE, - ACTIONS(572), 1, + ACTIONS(546), 1, anon_sym_SQUOTE, - ACTIONS(574), 1, + ACTIONS(548), 1, aux_sym_if_do_statement_token1, - ACTIONS(576), 1, + ACTIONS(550), 1, aux_sym_can_find_expression_token1, - ACTIONS(578), 1, + ACTIONS(552), 1, aux_sym_accumulate_expression_token1, - STATE(289), 1, + STATE(285), 1, sym__expression, - ACTIONS(552), 2, + ACTIONS(526), 2, sym_null_expression, sym_number_literal, - ACTIONS(580), 2, + ACTIONS(554), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(196), 2, sym_comment, sym_include, - STATE(365), 2, + STATE(372), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(554), 4, + ACTIONS(528), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(371), 4, + STATE(352), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(364), 16, + STATE(374), 16, sym_qualified_name, sym_boolean_literal, sym_parenthesized_expression, @@ -27426,40 +27433,39 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19763] = 4, - ACTIONS(3), 1, + [19763] = 10, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + aux_sym_object_access_token1, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(251), 1, + aux_sym_object_access_repeat1, STATE(197), 2, sym_comment, sym_include, - ACTIONS(410), 43, - sym_identifier, + ACTIONS(394), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(588), 35, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -27470,15 +27476,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [19819] = 4, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [19831] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -27486,7 +27499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(198), 2, sym_comment, sym_include, - ACTIONS(588), 43, + ACTIONS(594), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -27530,7 +27543,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [19875] = 4, + [19887] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -27538,7 +27551,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(199), 2, sym_comment, sym_include, - ACTIONS(590), 43, + ACTIONS(596), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -27582,36 +27595,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [19931] = 14, + [19943] = 13, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, STATE(200), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -27625,72 +27635,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(592), 18, + ACTIONS(598), 20, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [20007] = 14, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(201), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - ACTIONS(602), 18, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -27706,67 +27656,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [20083] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(202), 2, - sym_comment, - sym_include, - ACTIONS(516), 43, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [20139] = 4, + [20017] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(203), 2, + STATE(201), 2, sym_comment, sym_include, - ACTIONS(604), 43, + ACTIONS(606), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -27810,33 +27708,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [20195] = 13, + [20073] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(404), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(204), 2, + STATE(202), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(608), 35, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -27850,12 +27752,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(606), 20, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -27871,15 +27767,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [20269] = 4, + [20143] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(205), 2, + STATE(203), 2, sym_comment, sym_include, - ACTIONS(608), 43, + ACTIONS(610), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -27923,15 +27819,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [20325] = 4, + [20199] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(206), 2, + STATE(204), 2, sym_comment, sym_include, - ACTIONS(610), 43, + ACTIONS(612), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -27975,38 +27871,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [20381] = 12, + [20255] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(416), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(207), 2, - sym_comment, - sym_include, - ACTIONS(612), 33, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(616), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, + STATE(205), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28020,63 +27914,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [20453] = 9, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - STATE(208), 2, - sym_comment, - sym_include, - ACTIONS(348), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(614), 36, + ACTIONS(614), 18, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -28092,36 +27933,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [20519] = 14, + [20331] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(209), 2, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(206), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28135,7 +27976,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(616), 18, + ACTIONS(618), 18, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -28154,15 +27995,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [20595] = 4, + [20407] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(210), 2, + STATE(207), 2, sym_comment, sym_include, - ACTIONS(618), 43, + ACTIONS(620), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28206,92 +28047,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [20651] = 4, - ACTIONS(3), 1, + [20463] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - STATE(211), 2, - sym_comment, - sym_include, - ACTIONS(620), 43, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [20707] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(212), 2, - sym_comment, - sym_include, - ACTIONS(342), 43, - sym_identifier, - sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(208), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -28302,45 +28090,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [20763] = 11, + ACTIONS(622), 18, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [20539] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(344), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(418), 2, anon_sym_LT, anon_sym_GT, - STATE(213), 2, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(209), 2, sym_comment, sym_include, - ACTIONS(622), 35, + ACTIONS(624), 33, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28369,40 +28169,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [20833] = 4, - ACTIONS(3), 1, + [20611] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - STATE(214), 2, + STATE(210), 2, sym_comment, sym_include, - ACTIONS(326), 43, - sym_identifier, + ACTIONS(586), 4, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_object_access_token1, + ACTIONS(626), 39, sym__terminator, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -28413,36 +28204,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [20889] = 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + anon_sym_COLON, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym__using_first_token1, + [20669] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(215), 2, - sym_comment, - sym_include, - ACTIONS(584), 4, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - aux_sym_object_access_token1, - ACTIONS(624), 39, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(211), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28456,11 +28265,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(628), 18, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, aux_sym_if_do_statement_token2, - anon_sym_COLON, aux_sym_else_do_statement_token1, aux_sym_do_statement_token1, aux_sym_where_clause_token1, @@ -28470,19 +28282,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [20947] = 4, + [20745] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(216), 2, + STATE(212), 2, sym_comment, sym_include, - ACTIONS(626), 43, + ACTIONS(326), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28526,36 +28336,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21003] = 10, + [20801] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(630), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - aux_sym_object_access_token1, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(217), 2, - sym_comment, - sym_include, - ACTIONS(364), 3, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(628), 35, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(213), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28569,6 +28379,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(630), 18, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -28584,39 +28398,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [21071] = 14, - ACTIONS(311), 1, + [20877] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + STATE(214), 2, + sym_comment, + sym_include, + ACTIONS(513), 43, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(218), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -28627,55 +28442,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(634), 18, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [21147] = 14, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [20933] = 9, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(215), 2, + sym_comment, + sym_include, + ACTIONS(408), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(632), 36, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(219), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -28689,10 +28492,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(636), 18, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -28708,15 +28507,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [21223] = 4, + [20999] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(220), 2, + STATE(216), 2, sym_comment, sym_include, - ACTIONS(334), 43, + ACTIONS(342), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28760,73 +28559,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21279] = 10, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(630), 1, - anon_sym_LPAREN, - ACTIONS(632), 1, - aux_sym_object_access_token1, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(221), 2, - sym_comment, - sym_include, - ACTIONS(410), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(638), 35, - sym__terminator, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [21347] = 4, + [21055] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(222), 2, + STATE(217), 2, sym_comment, sym_include, - ACTIONS(640), 43, + ACTIONS(634), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28870,15 +28611,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21403] = 4, + [21111] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(223), 2, + STATE(218), 2, sym_comment, sym_include, - ACTIONS(642), 43, + ACTIONS(636), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28922,15 +28663,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21459] = 4, + [21167] = 14, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(219), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + ACTIONS(638), 18, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [21243] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(224), 2, + STATE(220), 2, sym_comment, sym_include, - ACTIONS(364), 43, + ACTIONS(406), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -28974,15 +28777,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21515] = 4, + [21299] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(225), 2, + STATE(221), 2, sym_comment, sym_include, - ACTIONS(338), 43, + ACTIONS(640), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29026,15 +28829,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21571] = 4, + [21355] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(226), 2, + STATE(222), 2, sym_comment, sym_include, - ACTIONS(644), 43, + ACTIONS(330), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29078,15 +28881,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21627] = 4, + [21411] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(227), 2, + STATE(223), 2, sym_comment, sym_include, - ACTIONS(646), 43, + ACTIONS(338), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29130,15 +28933,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21683] = 4, + [21467] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(224), 2, + sym_comment, + sym_include, + ACTIONS(574), 4, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_object_access_token1, + ACTIONS(642), 39, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + anon_sym_COLON, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym__using_first_token1, + [21525] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(228), 2, + STATE(225), 2, sym_comment, sym_include, - ACTIONS(500), 43, + ACTIONS(644), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29182,31 +29038,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [21739] = 5, - ACTIONS(311), 1, + [21581] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - STATE(229), 2, + STATE(226), 2, sym_comment, sym_include, - ACTIONS(548), 4, + ACTIONS(646), 43, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - aux_sym_object_access_token1, - ACTIONS(648), 39, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [21637] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(227), 2, + sym_comment, + sym_include, + ACTIONS(648), 43, + sym_identifier, sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, anon_sym_LPAREN, - anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -29217,54 +29134,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - anon_sym_COLON, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - aux_sym_of_token1, - aux_sym__using_first_token1, - [21797] = 14, - ACTIONS(311), 1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [21693] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, + STATE(228), 2, + sym_comment, + sym_include, + ACTIONS(334), 43, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, + anon_sym_SLASH, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(594), 2, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [21749] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(229), 2, + sym_comment, + sym_include, + ACTIONS(511), 43, + sym_identifier, + sym__terminator, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [21805] = 10, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + aux_sym_object_access_token1, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(251), 1, + aux_sym_object_access_repeat1, STATE(230), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(650), 35, + sym__terminator, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -29278,10 +29289,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(650), 18, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, @@ -29305,7 +29312,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(231), 2, sym_comment, sym_include, - ACTIONS(360), 43, + ACTIONS(392), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29357,7 +29364,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(232), 2, sym_comment, sym_include, - ACTIONS(330), 43, + ACTIONS(394), 43, sym_identifier, sym__terminator, sym_null_expression, @@ -29409,11 +29416,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(233), 2, sym_comment, sym_include, - ACTIONS(500), 3, + ACTIONS(606), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(526), 39, + ACTIONS(652), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29461,11 +29468,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(234), 2, sym_comment, sym_include, - ACTIONS(590), 3, + ACTIONS(640), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(652), 39, + ACTIONS(654), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29517,7 +29524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(654), 39, + ACTIONS(656), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29565,11 +29572,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(236), 2, sym_comment, sym_include, - ACTIONS(640), 3, + ACTIONS(636), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(656), 39, + ACTIONS(658), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29617,11 +29624,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(237), 2, sym_comment, sym_include, - ACTIONS(516), 3, + ACTIONS(634), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(546), 39, + ACTIONS(660), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29669,11 +29676,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(238), 2, sym_comment, sym_include, - ACTIONS(618), 3, + ACTIONS(594), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(658), 39, + ACTIONS(662), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29721,11 +29728,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(239), 2, sym_comment, sym_include, - ACTIONS(360), 3, + ACTIONS(612), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(606), 39, + ACTIONS(664), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29773,11 +29780,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(240), 2, sym_comment, sym_include, - ACTIONS(588), 3, + ACTIONS(610), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(660), 39, + ACTIONS(666), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29825,11 +29832,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(241), 2, sym_comment, sym_include, - ACTIONS(410), 3, + ACTIONS(596), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(638), 39, + ACTIONS(668), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29877,11 +29884,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(242), 2, sym_comment, sym_include, - ACTIONS(608), 3, + ACTIONS(513), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(662), 39, + ACTIONS(572), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29929,11 +29936,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(243), 2, sym_comment, sym_include, - ACTIONS(642), 3, + ACTIONS(620), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(664), 39, + ACTIONS(670), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -29985,7 +29992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(666), 39, + ACTIONS(672), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30033,11 +30040,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(245), 2, sym_comment, sym_include, - ACTIONS(604), 3, + ACTIONS(511), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(668), 39, + ACTIONS(578), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30085,11 +30092,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(246), 2, sym_comment, sym_include, - ACTIONS(620), 3, + ACTIONS(392), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(670), 39, + ACTIONS(598), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30137,11 +30144,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(247), 2, sym_comment, sym_include, - ACTIONS(626), 3, + ACTIONS(394), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(672), 39, + ACTIONS(588), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30189,11 +30196,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(248), 2, sym_comment, sym_include, - ACTIONS(364), 3, + ACTIONS(648), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(628), 39, + ACTIONS(674), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30241,11 +30248,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(249), 2, sym_comment, sym_include, - ACTIONS(610), 3, + ACTIONS(406), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(674), 39, + ACTIONS(650), 39, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30292,7 +30299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(678), 1, aux_sym_object_access_token1, - ACTIONS(506), 3, + ACTIONS(500), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -30342,14 +30349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(632), 1, + ACTIONS(592), 1, aux_sym_object_access_token1, STATE(250), 1, aux_sym_object_access_repeat1, STATE(251), 2, sym_comment, sym_include, - ACTIONS(502), 3, + ACTIONS(505), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -30395,9 +30402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(683), 1, anon_sym_RPAREN, @@ -30409,31 +30416,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - STATE(624), 1, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(616), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(252), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -30443,7 +30450,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30457,21 +30464,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [23161] = 5, + [23161] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(697), 1, + anon_sym_LPAREN, STATE(253), 2, sym_comment, sym_include, - ACTIONS(548), 3, + ACTIONS(582), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(648), 37, + ACTIONS(695), 36, sym__terminator, - anon_sym_LPAREN, anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, @@ -30507,14 +30515,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [23216] = 22, + [23218] = 22, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(685), 1, aux_sym_where_clause_token1, @@ -30524,33 +30532,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(695), 1, + ACTIONS(699), 1, anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - STATE(619), 1, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(623), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(254), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -30560,7 +30568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30574,14 +30582,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [23305] = 22, + [23307] = 22, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(685), 1, aux_sym_where_clause_token1, @@ -30591,33 +30599,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(697), 1, + ACTIONS(701), 1, anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - STATE(623), 1, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(615), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(255), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -30627,7 +30635,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30641,60 +30649,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [23394] = 22, + [23396] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + STATE(256), 2, + sym_comment, + sym_include, + ACTIONS(580), 3, anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(691), 1, - aux_sym_of_token1, - ACTIONS(693), 1, - aux_sym__using_first_token1, - ACTIONS(699), 1, - anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - STATE(612), 1, - aux_sym_can_find_expression_repeat2, - STATE(632), 1, - sym__using_first, - ACTIONS(356), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(703), 37, + sym__terminator, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(256), 2, - sym_comment, - sym_include, - STATE(682), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - ACTIONS(600), 13, + anon_sym_STAR, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30708,22 +30683,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [23483] = 6, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + anon_sym_COMMA, + aux_sym_if_do_statement_token2, + aux_sym_else_do_statement_token1, + aux_sym_do_statement_token1, + aux_sym_object_access_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [23451] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(703), 1, - anon_sym_LPAREN, STATE(257), 2, sym_comment, sym_include, - ACTIONS(524), 3, + ACTIONS(574), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(701), 36, + ACTIONS(642), 37, sym__terminator, + anon_sym_LPAREN, anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, @@ -30759,14 +30749,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [23540] = 22, + [23506] = 22, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(685), 1, aux_sym_where_clause_token1, @@ -30778,31 +30768,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(705), 1, anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - STATE(615), 1, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(618), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(258), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -30812,7 +30802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30826,27 +30816,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [23629] = 5, + [23595] = 22, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(259), 2, - sym_comment, - sym_include, - ACTIONS(586), 3, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(691), 1, + aux_sym_of_token1, + ACTIONS(693), 1, + aux_sym__using_first_token1, + ACTIONS(707), 1, + anon_sym_RPAREN, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(612), 1, + aux_sym_can_find_expression_repeat2, + STATE(635), 1, + sym__using_first, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(707), 37, - sym__terminator, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(259), 2, + sym_comment, + sym_include, + STATE(680), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30860,30 +30883,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - anon_sym_COMMA, - aux_sym_if_do_statement_token2, - aux_sym_else_do_statement_token1, - aux_sym_do_statement_token1, - aux_sym_object_access_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, [23684] = 22, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(685), 1, aux_sym_where_clause_token1, @@ -30895,31 +30902,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(709), 1, anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - STATE(613), 1, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(620), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(260), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -30929,7 +30936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -30951,11 +30958,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(261), 2, sym_comment, sym_include, - ACTIONS(584), 3, + ACTIONS(586), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(624), 37, + ACTIONS(626), 37, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, @@ -30998,27 +31005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(262), 2, sym_comment, sym_include, @@ -31034,7 +31041,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31053,74 +31060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__namedot, - ACTIONS(630), 1, + ACTIONS(590), 1, anon_sym_LPAREN, ACTIONS(713), 1, aux_sym_object_access_token1, - STATE(68), 1, + STATE(67), 1, aux_sym_qualified_name_repeat1, - STATE(278), 1, + STATE(277), 1, aux_sym_object_access_repeat1, STATE(263), 2, sym_comment, sym_include, - ACTIONS(364), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(628), 27, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [23957] = 10, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(630), 1, - anon_sym_LPAREN, - ACTIONS(713), 1, - aux_sym_object_access_token1, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(278), 1, - aux_sym_object_access_repeat1, - STATE(264), 2, - sym_comment, - sym_include, - ACTIONS(410), 3, + ACTIONS(406), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(638), 27, + ACTIONS(650), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31148,36 +31105,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [24017] = 14, + [23957] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(713), 1, + aux_sym_object_access_token1, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(277), 1, + aux_sym_object_access_repeat1, + STATE(264), 2, + sym_comment, + sym_include, + ACTIONS(394), 3, anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, - sym__additive_operator, - STATE(148), 1, - sym__multiplicative_operator, - STATE(150), 1, - sym__comparison_operator, - ACTIONS(356), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(588), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(265), 2, - sym_comment, - sym_include, - ACTIONS(616), 9, + anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31187,7 +31155,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + [24017] = 9, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(128), 1, + sym__additive_operator, + STATE(141), 1, + sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, + STATE(150), 1, + sym__comparison_operator, + STATE(265), 2, + sym_comment, + sym_include, + ACTIONS(408), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(632), 27, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31201,36 +31194,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24084] = 14, + anon_sym_COLON, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [24074] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(266), 2, sym_comment, sym_include, - ACTIONS(634), 9, + ACTIONS(630), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31240,7 +31242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31254,35 +31256,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24151] = 12, + [24141] = 13, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(416), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, STATE(267), 2, sym_comment, sym_include, - ACTIONS(612), 24, + ACTIONS(598), 11, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, + anon_sym_COLON, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31296,41 +31308,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [24214] = 9, + [24206] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - STATE(268), 2, - sym_comment, - sym_include, - ACTIONS(348), 3, - anon_sym_SLASH, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(614), 27, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(268), 2, + sym_comment, + sym_include, + ACTIONS(614), 9, + anon_sym_COLON, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31344,45 +31361,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COLON, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [24271] = 14, + [24273] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(269), 2, sym_comment, sym_include, - ACTIONS(711), 9, + ACTIONS(618), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31392,7 +31400,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31406,30 +31414,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24338] = 11, + [24340] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(344), 2, + ACTIONS(404), 2, anon_sym_LT, anon_sym_GT, STATE(270), 2, sym_comment, sym_include, - ACTIONS(622), 26, + ACTIONS(608), 26, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31456,36 +31464,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [24399] = 14, + [24401] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(271), 2, sym_comment, sym_include, - ACTIONS(636), 9, + ACTIONS(638), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31495,7 +31503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31509,36 +31517,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24466] = 14, + [24468] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(272), 2, sym_comment, sym_include, - ACTIONS(592), 9, + ACTIONS(622), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31548,7 +31556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31562,46 +31570,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24533] = 14, + [24535] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(418), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, STATE(273), 2, sym_comment, sym_include, - ACTIONS(650), 9, - anon_sym_COLON, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(624), 24, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31615,36 +31612,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24600] = 14, + anon_sym_COLON, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [24598] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(274), 2, sym_comment, sym_include, - ACTIONS(602), 9, + ACTIONS(628), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31654,7 +31660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31668,35 +31674,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [24667] = 13, + [24665] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(146), 1, - sym__logical_operator, - STATE(147), 1, + STATE(128), 1, sym__additive_operator, - STATE(148), 1, + STATE(141), 1, sym__multiplicative_operator, + STATE(142), 1, + sym__logical_operator, STATE(150), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(275), 2, sym_comment, sym_include, - ACTIONS(606), 11, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(711), 9, anon_sym_COLON, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -31706,7 +31713,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -31725,17 +31732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(715), 1, - aux_sym_object_access_token1, - ACTIONS(506), 3, + ACTIONS(590), 1, + anon_sym_LPAREN, + STATE(276), 2, + sym_comment, + sym_include, + ACTIONS(582), 4, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(276), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(676), 27, + aux_sym_object_access_token1, + ACTIONS(695), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31763,22 +31770,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [24781] = 6, + [24781] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(630), 1, - anon_sym_LPAREN, + ACTIONS(713), 1, + aux_sym_object_access_token1, + STATE(278), 1, + aux_sym_object_access_repeat1, STATE(277), 2, sym_comment, sym_include, - ACTIONS(524), 4, + ACTIONS(505), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym_object_access_token1, - ACTIONS(701), 27, + ACTIONS(681), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31806,23 +31814,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [24830] = 7, + [24832] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(713), 1, + ACTIONS(715), 1, aux_sym_object_access_token1, - STATE(276), 1, - aux_sym_object_access_repeat1, - STATE(278), 2, - sym_comment, - sym_include, - ACTIONS(502), 3, + ACTIONS(500), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(681), 27, + STATE(278), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(676), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31858,12 +31865,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(279), 2, sym_comment, sym_include, - ACTIONS(586), 4, + ACTIONS(580), 4, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym_object_access_token1, - ACTIONS(707), 27, + ACTIONS(703), 27, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, @@ -31902,14 +31909,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_access_token1, ACTIONS(722), 1, sym__namedot, - STATE(304), 1, + STATE(314), 1, aux_sym_qualified_name_repeat1, - STATE(337), 1, + STATE(330), 1, aux_sym_object_access_repeat1, STATE(280), 2, sym_comment, sym_include, - ACTIONS(410), 24, + ACTIONS(406), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -31945,14 +31952,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_access_token1, ACTIONS(722), 1, sym__namedot, - STATE(304), 1, + STATE(314), 1, aux_sym_qualified_name_repeat1, - STATE(337), 1, + STATE(330), 1, aux_sym_object_access_repeat1, STATE(281), 2, sym_comment, sym_include, - ACTIONS(364), 24, + ACTIONS(394), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -31977,41 +31984,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [25031] = 12, - ACTIONS(3), 1, + [25031] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, - sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, - sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(602), 1, + anon_sym_STAR, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(282), 2, sym_comment, sym_include, - ACTIONS(418), 3, - sym_identifier, + ACTIONS(724), 3, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(356), 15, - anon_sym_LT, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32022,28 +32031,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25088] = 12, + [25092] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(283), 2, sym_comment, sym_include, @@ -32051,7 +32060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32067,41 +32076,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25145] = 12, - ACTIONS(3), 1, + [25149] = 16, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, - sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, - sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(726), 1, + anon_sym_RPAREN, + ACTIONS(728), 1, + anon_sym_COMMA, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(798), 1, + aux_sym_function_call_argument_repeat1, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(284), 2, sym_comment, sym_include, - ACTIONS(422), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(356), 15, - anon_sym_LT, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32112,32 +32125,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25202] = 9, + [25214] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, anon_sym_STAR, anon_sym_SLASH, STATE(285), 2, sym_comment, sym_include, - ACTIONS(344), 22, + ACTIONS(424), 3, sym_identifier, sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_NO_DASHERROR, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32153,37 +32170,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [25253] = 12, + [25271] = 10, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(286), 2, sym_comment, sym_include, - ACTIONS(350), 3, + ACTIONS(418), 20, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32199,36 +32212,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25310] = 8, - ACTIONS(3), 1, + anon_sym_NO_DASHERROR, + [25324] = 16, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, - sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(730), 1, + anon_sym_RPAREN, + STATE(168), 1, sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + STATE(798), 1, + aux_sym_function_call_argument_repeat1, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(287), 2, sym_comment, sym_include, - ACTIONS(348), 24, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32239,34 +32262,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [25359] = 10, + [25389] = 11, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(354), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(288), 2, sym_comment, sym_include, - ACTIONS(416), 20, + ACTIONS(392), 5, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, + anon_sym_NO_DASHERROR, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32282,36 +32306,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [25412] = 11, + [25444] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(354), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(289), 2, sym_comment, sym_include, - ACTIONS(360), 5, + ACTIONS(732), 3, sym_identifier, sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32327,43 +32351,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25467] = 14, - ACTIONS(311), 1, + [25501] = 12, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(290), 2, sym_comment, sym_include, - ACTIONS(724), 3, + ACTIONS(410), 3, + sym_identifier, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - ACTIONS(600), 13, + anon_sym_NO_DASHERROR, + ACTIONS(390), 15, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32374,45 +32396,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25528] = 16, - ACTIONS(311), 1, + [25558] = 8, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(726), 1, - anon_sym_RPAREN, - ACTIONS(728), 1, - anon_sym_COMMA, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(182), 1, sym__logical_operator, - STATE(796), 1, - aux_sym_function_call_argument_repeat1, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + STATE(291), 2, + sym_comment, + sym_include, + ACTIONS(408), 24, + sym_identifier, + sym__terminator, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(291), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32423,36 +32436,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25593] = 12, + anon_sym_NO_DASHERROR, + [25607] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(292), 2, sym_comment, sym_include, - ACTIONS(358), 3, + ACTIONS(402), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32468,36 +32482,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25650] = 12, + [25664] = 9, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(352), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(354), 2, - anon_sym_PLUS, - anon_sym_DASH, STATE(293), 2, sym_comment, sym_include, - ACTIONS(362), 3, + ACTIONS(404), 22, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32513,36 +32523,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25707] = 12, + anon_sym_NO_DASHERROR, + [25715] = 12, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(182), 1, - sym__comparison_operator, - STATE(183), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(184), 1, - sym__additive_operator, - STATE(185), 1, + STATE(182), 1, sym__logical_operator, - ACTIONS(346), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(352), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(354), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(294), 2, sym_comment, sym_include, - ACTIONS(730), 3, + ACTIONS(416), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(356), 15, + ACTIONS(390), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -32558,45 +32569,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25764] = 16, - ACTIONS(311), 1, + [25772] = 12, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(728), 1, - anon_sym_COMMA, - ACTIONS(732), 1, - anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, + STATE(117), 1, sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(182), 1, sym__logical_operator, - STATE(796), 1, - aux_sym_function_call_argument_repeat1, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + STATE(185), 1, + sym__additive_operator, + STATE(190), 1, + sym__comparison_operator, + ACTIONS(384), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(386), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_SLASH, STATE(295), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(382), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(390), 15, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32612,34 +32619,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, ACTIONS(734), 2, sym__terminator, aux_sym_do_statement_token1, STATE(296), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32658,34 +32665,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, ACTIONS(736), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(297), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32699,32 +32706,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [25949] = 6, - ACTIONS(3), 1, + [25949] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - sym__namedot, - STATE(304), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(738), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(298), 2, sym_comment, sym_include, - ACTIONS(500), 24, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32735,39 +32751,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [25992] = 14, + [26008] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(738), 1, - anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(740), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(299), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32781,41 +32796,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26051] = 14, - ACTIONS(311), 1, + [26067] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(740), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(742), 1, + sym__namedot, + STATE(300), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(319), 24, + sym_identifier, + sym__terminator, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(300), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32826,38 +32831,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26110] = 14, + anon_sym_NO_DASHERROR, + [26108] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(742), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(745), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(301), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32871,38 +32877,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26169] = 14, + [26167] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(744), 1, - anon_sym_LPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(747), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(302), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32916,38 +32922,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26228] = 14, + [26226] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(746), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(730), 1, + anon_sym_RPAREN, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(303), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -32961,32 +32967,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26287] = 6, - ACTIONS(3), 1, + [26285] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(722), 1, - sym__namedot, - STATE(334), 1, - aux_sym_qualified_name_repeat1, - STATE(304), 2, - sym_comment, - sym_include, - ACTIONS(320), 24, - sym_identifier, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(749), 1, sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(304), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -32997,39 +33012,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [26330] = 14, + [26344] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(748), 1, + ACTIONS(751), 1, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(305), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33043,38 +33057,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26389] = 14, + [26403] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(750), 1, - aux_sym_else_do_statement_token1, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(753), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(306), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33088,38 +33102,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26448] = 14, + [26462] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(752), 1, + ACTIONS(755), 1, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(307), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33133,34 +33147,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26507] = 10, + [26521] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(632), 1, - aux_sym_object_access_token1, - ACTIONS(754), 1, - anon_sym_LPAREN, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(308), 2, - sym_comment, - sym_include, - ACTIONS(410), 3, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(757), 1, + aux_sym_else_do_statement_token1, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(638), 18, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(308), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33174,41 +33192,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26558] = 14, - ACTIONS(311), 1, + [26580] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(756), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(722), 1, + sym__namedot, + STATE(314), 1, + aux_sym_qualified_name_repeat1, + STATE(309), 2, + sym_comment, + sym_include, + ACTIONS(511), 24, + sym_identifier, + sym__terminator, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(309), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -33219,38 +33228,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26617] = 14, + anon_sym_NO_DASHERROR, + [26623] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(758), 1, + ACTIONS(759), 1, aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(310), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33264,38 +33274,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26676] = 14, + [26682] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(760), 1, - aux_sym_else_do_statement_token1, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, + ACTIONS(761), 1, + anon_sym_COLON, + STATE(128), 1, sym__additive_operator, - STATE(165), 1, + STATE(141), 1, + sym__multiplicative_operator, + STATE(142), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(150), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(311), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33309,38 +33319,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26735] = 14, + [26741] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(762), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(763), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(312), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33354,38 +33364,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26794] = 14, + [26800] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(764), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(765), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(313), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33399,41 +33409,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26853] = 14, - ACTIONS(311), 1, + [26859] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(766), 1, + ACTIONS(722), 1, + sym__namedot, + STATE(300), 1, + aux_sym_qualified_name_repeat1, + STATE(314), 2, + sym_comment, + sym_include, + ACTIONS(309), 24, + sym_identifier, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(314), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -33444,38 +33445,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26912] = 14, + anon_sym_NO_DASHERROR, + [26902] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(768), 1, - anon_sym_COLON, - STATE(146), 1, + ACTIONS(767), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - STATE(147), 1, + STATE(169), 1, sym__additive_operator, - STATE(148), 1, + STATE(176), 1, sym__multiplicative_operator, - STATE(150), 1, + STATE(183), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(315), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33489,38 +33491,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26971] = 14, + [26961] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(770), 1, - anon_sym_LPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(769), 1, + anon_sym_RPAREN, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(316), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33534,41 +33536,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27030] = 14, - ACTIONS(311), 1, + [27020] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(726), 1, - anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(771), 1, + aux_sym_object_access_token1, + STATE(317), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(500), 24, + sym_identifier, + sym__terminator, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(317), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -33579,38 +33571,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27089] = 14, + anon_sym_NO_DASHERROR, + [27061] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(772), 1, + ACTIONS(774), 1, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(318), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33624,38 +33617,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27148] = 14, + [27120] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(774), 1, + ACTIONS(776), 1, aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(319), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33669,34 +33662,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27207] = 10, + [27179] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(632), 1, - aux_sym_object_access_token1, - ACTIONS(776), 1, - anon_sym_LPAREN, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(251), 1, - aux_sym_object_access_repeat1, - STATE(320), 2, - sym_comment, - sym_include, - ACTIONS(410), 3, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(778), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(638), 18, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(320), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33710,38 +33707,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27258] = 14, + [27238] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(778), 1, + ACTIONS(780), 1, aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(321), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33755,38 +33752,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27317] = 14, + [27297] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(780), 1, + ACTIONS(782), 1, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(322), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33800,41 +33797,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27376] = 14, - ACTIONS(311), 1, + [27356] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(782), 1, + ACTIONS(718), 1, + anon_sym_LPAREN, + STATE(323), 2, + sym_comment, + sym_include, + ACTIONS(582), 25, + sym_identifier, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(323), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -33845,38 +33831,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27435] = 14, + aux_sym_object_access_token1, + anon_sym_NO_DASHERROR, + [27397] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(784), 1, - aux_sym_if_do_statement_token2, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, + anon_sym_COLON, + STATE(128), 1, sym__additive_operator, - STATE(165), 1, + STATE(141), 1, + sym__multiplicative_operator, + STATE(142), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(150), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(324), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33890,38 +33878,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27494] = 14, + [27456] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(786), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + aux_sym_else_do_statement_token1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(325), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33935,38 +33923,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27553] = 14, + [27515] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + anon_sym_LPAREN, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(326), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -33980,38 +33968,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27612] = 14, + [27574] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(592), 1, + aux_sym_object_access_token1, ACTIONS(790), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, + anon_sym_LPAREN, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(251), 1, + aux_sym_object_access_repeat1, + STATE(327), 2, + sym_comment, + sym_include, + ACTIONS(406), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(650), 18, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(327), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, + anon_sym_STAR, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34025,38 +34009,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27671] = 14, + [27625] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(792), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + anon_sym_RPAREN, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, STATE(328), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34070,83 +34054,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27730] = 14, + [27684] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(794), 1, sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(329), 2, - sym_comment, - sym_include, - ACTIONS(600), 13, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [27789] = 14, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(346), 1, - anon_sym_SLASH, - ACTIONS(598), 1, - anon_sym_STAR, - ACTIONS(796), 1, - aux_sym_else_do_statement_token1, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, - sym__logical_operator, - ACTIONS(356), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(594), 2, + ACTIONS(616), 2, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, - ACTIONS(596), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(330), 2, + STATE(329), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34160,55 +34099,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27848] = 5, + [27743] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(720), 1, aux_sym_object_access_token1, - STATE(331), 3, - sym_comment, - sym_include, + STATE(317), 1, aux_sym_object_access_repeat1, - ACTIONS(506), 24, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [27889] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(722), 1, - sym__namedot, - STATE(304), 1, - aux_sym_qualified_name_repeat1, - STATE(332), 2, + STATE(330), 2, sym_comment, sym_include, - ACTIONS(516), 24, + ACTIONS(505), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34233,38 +34136,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [27932] = 14, + [27786] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(801), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(796), 1, + anon_sym_LPAREN, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(333), 2, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(331), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34278,31 +34181,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27991] = 5, - ACTIONS(3), 1, + [27845] = 10, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(803), 1, + ACTIONS(315), 1, sym__namedot, - STATE(334), 3, + ACTIONS(592), 1, + aux_sym_object_access_token1, + ACTIONS(798), 1, + anon_sym_LPAREN, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(251), 1, + aux_sym_object_access_repeat1, + STATE(332), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(309), 24, - sym_identifier, - sym__terminator, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(650), 18, aux_sym__logical_operator_token1, aux_sym__logical_operator_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -34313,39 +34222,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [28032] = 14, + [27896] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, - ACTIONS(806), 1, - sym__terminator, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + ACTIONS(800), 1, + aux_sym_else_do_statement_token1, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(335), 2, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(333), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34359,30 +34267,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [28091] = 5, - ACTIONS(3), 1, + [27955] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(718), 1, - anon_sym_LPAREN, - STATE(336), 2, - sym_comment, - sym_include, - ACTIONS(524), 25, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(802), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(334), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -34393,34 +34312,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_object_access_token1, - anon_sym_NO_DASHERROR, - [28132] = 6, - ACTIONS(3), 1, + [28014] = 14, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(720), 1, - aux_sym_object_access_token1, - STATE(331), 1, - aux_sym_object_access_repeat1, - STATE(337), 2, - sym_comment, - sym_include, - ACTIONS(502), 24, - sym_identifier, + ACTIONS(388), 1, + anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(804), 1, sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(335), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [28073] = 14, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(388), 1, anon_sym_SLASH, + ACTIONS(602), 1, + anon_sym_STAR, + ACTIONS(806), 1, + aux_sym_else_do_statement_token1, + STATE(168), 1, + sym__logical_operator, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(336), 2, + sym_comment, + sym_include, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_GT_EQ, aux_sym__comparison_operator_token1, aux_sym__comparison_operator_token2, @@ -34431,39 +34402,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [28175] = 14, + [28132] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(808), 1, - anon_sym_COLON, - STATE(146), 1, + sym__terminator, + STATE(168), 1, sym__logical_operator, - STATE(147), 1, + STATE(169), 1, sym__additive_operator, - STATE(148), 1, + STATE(176), 1, sym__multiplicative_operator, - STATE(150), 1, + STATE(183), 1, sym__comparison_operator, - ACTIONS(356), 2, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(338), 2, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(337), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34477,38 +34447,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [28234] = 14, + [28191] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(346), 1, + ACTIONS(388), 1, anon_sym_SLASH, - ACTIONS(598), 1, + ACTIONS(602), 1, anon_sym_STAR, ACTIONS(810), 1, - aux_sym_else_do_statement_token1, - STATE(158), 1, - sym__comparison_operator, - STATE(159), 1, - sym__multiplicative_operator, - STATE(161), 1, - sym__additive_operator, - STATE(165), 1, + aux_sym_if_do_statement_token2, + STATE(168), 1, sym__logical_operator, - ACTIONS(356), 2, + STATE(169), 1, + sym__additive_operator, + STATE(176), 1, + sym__multiplicative_operator, + STATE(183), 1, + sym__comparison_operator, + ACTIONS(390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(594), 2, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - ACTIONS(596), 2, + ACTIONS(600), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(339), 2, + ACTIONS(616), 2, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + STATE(338), 2, sym_comment, sym_include, - ACTIONS(600), 13, + ACTIONS(604), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -34522,15 +34492,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [28293] = 4, + [28250] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(340), 2, + ACTIONS(722), 1, + sym__namedot, + STATE(314), 1, + aux_sym_qualified_name_repeat1, + STATE(339), 2, sym_comment, sym_include, - ACTIONS(584), 25, + ACTIONS(513), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34554,17 +34528,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - aux_sym_object_access_token1, anon_sym_NO_DASHERROR, - [28331] = 4, + [28293] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(341), 2, + STATE(340), 2, sym_comment, sym_include, - ACTIONS(548), 25, + ACTIONS(580), 25, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34590,17 +34563,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_object_access_token1, anon_sym_NO_DASHERROR, - [28369] = 5, + [28331] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(307), 1, + ACTIONS(317), 1, sym__namedot, - STATE(342), 2, + STATE(341), 2, sym_comment, sym_include, - ACTIONS(309), 24, + ACTIONS(319), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34625,15 +34598,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28409] = 4, + [28371] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(343), 2, + STATE(342), 2, sym_comment, sym_include, - ACTIONS(586), 25, + ACTIONS(574), 25, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34659,15 +34632,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token9, aux_sym_object_access_token1, anon_sym_NO_DASHERROR, - [28447] = 4, + [28409] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(344), 2, + STATE(343), 2, sym_comment, sym_include, - ACTIONS(334), 24, + ACTIONS(586), 25, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34691,8 +34664,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + aux_sym_object_access_token1, anon_sym_NO_DASHERROR, - [28484] = 7, + [28447] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34701,13 +34675,14 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, ACTIONS(816), 1, aux_sym_else_do_statement_token1, - STATE(390), 2, - sym_else_do_statement, - sym_else_do_if_statement, - STATE(345), 3, + STATE(370), 1, + aux_sym_if_do_statement_repeat1, + STATE(344), 2, sym_comment, sym_include, - aux_sym_if_do_statement_repeat1, + STATE(408), 2, + sym_else_do_statement, + sym_else_do_if_statement, ACTIONS(814), 19, sym_identifier, aux_sym_input_expression_token1, @@ -34728,58 +34703,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [28527] = 4, + [28492] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(346), 2, + ACTIONS(820), 1, + aux_sym_else_do_statement_token1, + STATE(364), 1, + aux_sym_if_do_statement_repeat1, + STATE(345), 2, sym_comment, sym_include, - ACTIONS(626), 24, + STATE(385), 2, + sym_else_do_statement, + sym_else_do_if_statement, + ACTIONS(818), 20, sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [28564] = 8, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_if_do_statement_token1, + aux_sym_if_do_statement_token3, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym_procedure_parameter_definition_token3, + aux_sym__function_terminator_token1, + aux_sym_class_statement_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + [28535] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - ts_builtin_sym_end, - ACTIONS(823), 1, + ACTIONS(820), 1, aux_sym_else_do_statement_token1, STATE(357), 1, aux_sym_if_do_statement_repeat1, - STATE(347), 2, + STATE(346), 2, sym_comment, sym_include, - STATE(390), 2, + STATE(385), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(821), 19, + ACTIONS(814), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -34798,7 +34775,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [28609] = 4, + [28578] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(347), 2, + sym_comment, + sym_include, + ACTIONS(513), 24, + sym_identifier, + sym__terminator, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [28615] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34806,7 +34816,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(348), 2, sym_comment, sym_include, - ACTIONS(516), 24, + ACTIONS(596), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34831,7 +34841,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28646] = 4, + [28652] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34839,7 +34849,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(349), 2, sym_comment, sym_include, - ACTIONS(644), 24, + ACTIONS(606), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34864,7 +34874,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28683] = 4, + [28689] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34872,7 +34882,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(350), 2, sym_comment, sym_include, - ACTIONS(640), 24, + ACTIONS(610), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34897,7 +34907,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28720] = 4, + [28726] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34905,7 +34915,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(351), 2, sym_comment, sym_include, - ACTIONS(646), 24, + ACTIONS(392), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34930,7 +34940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28757] = 4, + [28763] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34938,7 +34948,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(352), 2, sym_comment, sym_include, - ACTIONS(618), 24, + ACTIONS(648), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34963,7 +34973,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28794] = 4, + [28800] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -34971,7 +34981,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(353), 2, sym_comment, sym_include, - ACTIONS(590), 24, + ACTIONS(594), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -34996,7 +35006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28831] = 4, + [28837] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35004,7 +35014,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(354), 2, sym_comment, sym_include, - ACTIONS(604), 24, + ACTIONS(394), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35029,7 +35039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28868] = 4, + [28874] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35037,7 +35047,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(355), 2, sym_comment, sym_include, - ACTIONS(620), 24, + ACTIONS(636), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35062,7 +35072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28905] = 4, + [28911] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35070,7 +35080,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(356), 2, sym_comment, sym_include, - ACTIONS(610), 24, + ACTIONS(644), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35095,25 +35105,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [28942] = 8, + [28948] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(823), 1, + ACTIONS(820), 1, aux_sym_else_do_statement_token1, - ACTIONS(825), 1, - ts_builtin_sym_end, - STATE(345), 1, + STATE(364), 1, aux_sym_if_do_statement_repeat1, STATE(357), 2, sym_comment, sym_include, - STATE(390), 2, + STATE(385), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(827), 19, + ACTIONS(822), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -35132,59 +35141,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [28987] = 6, + [28991] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(829), 1, - aux_sym_else_do_statement_token1, - STATE(393), 2, - sym_else_do_statement, - sym_else_do_if_statement, - STATE(358), 3, + STATE(358), 2, sym_comment, sym_include, - aux_sym_if_do_statement_repeat1, - ACTIONS(814), 20, + ACTIONS(646), 24, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_if_do_statement_token1, - aux_sym_if_do_statement_token3, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym_procedure_parameter_definition_token3, - aux_sym__function_terminator_token1, - aux_sym_class_statement_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - [29028] = 8, + sym__terminator, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [29028] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(823), 1, - aux_sym_else_do_statement_token1, - ACTIONS(832), 1, + ACTIONS(824), 1, ts_builtin_sym_end, - STATE(369), 1, - aux_sym_if_do_statement_repeat1, - STATE(359), 2, - sym_comment, - sym_include, - STATE(390), 2, + ACTIONS(828), 1, + aux_sym_else_do_statement_token1, + STATE(408), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(834), 19, + STATE(359), 3, + sym_comment, + sym_include, + aux_sym_if_do_statement_repeat1, + ACTIONS(826), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -35204,7 +35210,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29073] = 4, + [29071] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35212,7 +35218,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(360), 2, sym_comment, sym_include, - ACTIONS(326), 24, + ACTIONS(612), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35237,7 +35243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29110] = 4, + [29108] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35245,7 +35251,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(361), 2, sym_comment, sym_include, - ACTIONS(608), 24, + ACTIONS(511), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35270,7 +35276,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29147] = 4, + [29145] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35278,7 +35284,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(362), 2, sym_comment, sym_include, - ACTIONS(338), 24, + ACTIONS(634), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35303,22 +35309,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29184] = 7, + [29182] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(836), 1, - aux_sym_else_do_statement_token1, - STATE(358), 1, - aux_sym_if_do_statement_repeat1, STATE(363), 2, sym_comment, sym_include, - STATE(393), 2, + ACTIONS(342), 24, + sym_identifier, + sym__terminator, + aux_sym__logical_operator_token1, + aux_sym__logical_operator_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + aux_sym__comparison_operator_token1, + aux_sym__comparison_operator_token2, + aux_sym__comparison_operator_token3, + aux_sym__comparison_operator_token4, + aux_sym__comparison_operator_token5, + aux_sym__comparison_operator_token6, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + anon_sym_NO_DASHERROR, + [29219] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(831), 1, + aux_sym_else_do_statement_token1, + STATE(385), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(827), 20, + STATE(364), 3, + sym_comment, + sym_include, + aux_sym_if_do_statement_repeat1, + ACTIONS(826), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -35339,15 +35377,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29227] = 4, + [29260] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(364), 2, + STATE(365), 2, sym_comment, sym_include, - ACTIONS(410), 24, + ACTIONS(334), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35372,15 +35410,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29264] = 4, + [29297] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(365), 2, + STATE(366), 2, sym_comment, sym_include, - ACTIONS(330), 24, + ACTIONS(338), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35405,22 +35443,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29301] = 7, + [29334] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(836), 1, + ACTIONS(820), 1, aux_sym_else_do_statement_token1, - STATE(358), 1, + STATE(345), 1, aux_sym_if_do_statement_repeat1, - STATE(366), 2, + STATE(367), 2, sym_comment, sym_include, - STATE(393), 2, + STATE(385), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(821), 20, + ACTIONS(822), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -35441,40 +35479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29344] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(367), 2, - sym_comment, - sym_include, - ACTIONS(588), 24, - sym_identifier, - sym__terminator, - aux_sym__logical_operator_token1, - aux_sym__logical_operator_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - aux_sym__comparison_operator_token1, - aux_sym__comparison_operator_token2, - aux_sym__comparison_operator_token3, - aux_sym__comparison_operator_token4, - aux_sym__comparison_operator_token5, - aux_sym__comparison_operator_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [29381] = 4, + [29377] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35482,7 +35487,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(368), 2, sym_comment, sym_include, - ACTIONS(342), 24, + ACTIONS(326), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35507,24 +35512,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29418] = 8, + [29414] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(819), 1, - ts_builtin_sym_end, - ACTIONS(823), 1, + ACTIONS(816), 1, aux_sym_else_do_statement_token1, - STATE(345), 1, + ACTIONS(834), 1, + ts_builtin_sym_end, + STATE(373), 1, aux_sym_if_do_statement_repeat1, STATE(369), 2, sym_comment, sym_include, - STATE(390), 2, + STATE(408), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(821), 19, + ACTIONS(822), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -35544,24 +35549,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29463] = 7, + [29459] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(836), 1, + ACTIONS(816), 1, aux_sym_else_do_statement_token1, - STATE(363), 1, + ACTIONS(834), 1, + ts_builtin_sym_end, + STATE(359), 1, aux_sym_if_do_statement_repeat1, STATE(370), 2, sym_comment, sym_include, - STATE(393), 2, + STATE(408), 2, sym_else_do_statement, sym_else_do_if_statement, - ACTIONS(821), 20, + ACTIONS(822), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -35580,7 +35586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29506] = 4, + [29504] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -35588,7 +35594,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(371), 2, sym_comment, sym_include, - ACTIONS(642), 24, + ACTIONS(620), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35613,51 +35619,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29543] = 7, + [29541] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(836), 1, - aux_sym_else_do_statement_token1, - STATE(366), 1, - aux_sym_if_do_statement_repeat1, STATE(372), 2, sym_comment, sym_include, - STATE(393), 2, - sym_else_do_statement, - sym_else_do_if_statement, - ACTIONS(834), 20, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_if_do_statement_token1, - aux_sym_if_do_statement_token3, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym_procedure_parameter_definition_token3, - aux_sym__function_terminator_token1, - aux_sym_class_statement_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - [29586] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(373), 2, - sym_comment, - sym_include, - ACTIONS(500), 24, + ACTIONS(330), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35682,6 +35652,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, + [29578] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(816), 1, + aux_sym_else_do_statement_token1, + ACTIONS(836), 1, + ts_builtin_sym_end, + STATE(359), 1, + aux_sym_if_do_statement_repeat1, + STATE(373), 2, + sym_comment, + sym_include, + STATE(408), 2, + sym_else_do_statement, + sym_else_do_if_statement, + ACTIONS(818), 19, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_if_do_statement_token1, + aux_sym_if_do_statement_token3, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym_procedure_parameter_definition_token3, + aux_sym__function_terminator_token1, + aux_sym_class_statement_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, [29623] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, @@ -35690,7 +35697,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(374), 2, sym_comment, sym_include, - ACTIONS(364), 24, + ACTIONS(406), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35723,7 +35730,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(375), 2, sym_comment, sym_include, - ACTIONS(360), 24, + ACTIONS(640), 24, sym_identifier, sym__terminator, aux_sym__logical_operator_token1, @@ -35748,19 +35755,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [29697] = 6, + [29697] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(840), 1, + ACTIONS(838), 1, + ts_builtin_sym_end, + ACTIONS(842), 1, anon_sym_ELSE, - STATE(563), 1, + STATE(492), 1, sym_else_then_statement, STATE(376), 2, sym_comment, sym_include, - ACTIONS(838), 20, + ACTIONS(840), 19, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_if_do_statement_token1, + aux_sym_if_do_statement_token3, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym_procedure_parameter_definition_token3, + aux_sym__function_terminator_token1, + aux_sym_class_statement_token1, + aux_sym__case_terminator_token1, + aux_sym_find_statement_token1, + aux_sym_assign_statement_token1, + aux_sym_catch_statement_token1, + aux_sym_finally_statement_token1, + aux_sym_accumulate_statement_token1, + [29738] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(844), 1, + anon_sym_ELSE, + STATE(453), 1, + sym_else_then_statement, + STATE(377), 2, + sym_comment, + sym_include, + ACTIONS(840), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -35781,28 +35822,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29736] = 7, + [29777] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(842), 1, - ts_builtin_sym_end, - ACTIONS(844), 1, - anon_sym_ELSE, - STATE(574), 1, - sym_else_then_statement, - STATE(377), 2, + STATE(378), 2, sym_comment, sym_include, - ACTIONS(838), 19, + ACTIONS(846), 21, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, + anon_sym_ELSE, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -35815,15 +35852,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29777] = 4, + [29811] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(378), 2, + STATE(379), 2, sym_comment, sym_include, - ACTIONS(846), 21, + ACTIONS(848), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -35832,7 +35869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - anon_sym_ELSE, + aux_sym_else_do_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -35845,25 +35882,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29811] = 5, + [29845] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(848), 1, - ts_builtin_sym_end, - STATE(379), 2, + STATE(380), 2, + sym_comment, + sym_include, + ACTIONS(850), 21, + sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [29879] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(381), 2, sym_comment, sym_include, - ACTIONS(850), 20, + ACTIONS(852), 21, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - anon_sym_ELSE, + aux_sym_else_do_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -35876,14 +35942,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29847] = 5, + [29913] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(852), 1, + ACTIONS(854), 1, ts_builtin_sym_end, - STATE(380), 2, + STATE(382), 2, sym_comment, sym_include, ACTIONS(846), 20, @@ -35907,17 +35973,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29883] = 5, + [29949] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(854), 1, + ACTIONS(856), 1, ts_builtin_sym_end, - STATE(381), 2, + STATE(383), 2, sym_comment, sym_include, - ACTIONS(856), 20, + ACTIONS(858), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -35938,18 +36004,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29919] = 5, + [29985] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(858), 1, - ts_builtin_sym_end, - STATE(382), 2, + STATE(384), 2, sym_comment, sym_include, - ACTIONS(860), 20, + ACTIONS(860), 21, sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [30019] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(385), 2, + sym_comment, + sym_include, + ACTIONS(862), 21, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -35969,55 +36064,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [29955] = 5, + [30053] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(862), 1, - ts_builtin_sym_end, - STATE(383), 2, + STATE(386), 2, sym_comment, sym_include, - ACTIONS(864), 20, + ACTIONS(864), 21, sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, aux_sym_input_expression_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, aux_sym_if_do_statement_token1, - aux_sym_if_do_statement_token3, - anon_sym_ELSE, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym_procedure_parameter_definition_token3, - aux_sym__function_terminator_token1, - aux_sym_class_statement_token1, - aux_sym__case_terminator_token1, - aux_sym_find_statement_token1, - aux_sym_assign_statement_token1, - aux_sym_catch_statement_token1, - aux_sym_finally_statement_token1, - aux_sym_accumulate_statement_token1, - [29991] = 4, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [30087] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(384), 2, + STATE(387), 2, sym_comment, sym_include, ACTIONS(866), 21, sym_identifier, - aux_sym__block_terminator_token1, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [30121] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, + ts_builtin_sym_end, + STATE(388), 2, + sym_comment, + sym_include, + ACTIONS(870), 20, + sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - anon_sym_ELSE, + aux_sym_else_do_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36030,17 +36155,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30025] = 5, + [30157] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(868), 1, + STATE(389), 2, + sym_comment, + sym_include, + ACTIONS(872), 21, + sym_identifier, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + anon_sym_LPAREN, + aux_sym_unary_expression_token1, + aux_sym_unary_expression_token2, + aux_sym_ambiguous_expression_token1, + aux_sym_current_changed_expression_token1, + aux_sym_locked_expression_token1, + aux_sym_input_expression_token1, + sym_number_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_if_do_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [30191] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(874), 1, ts_builtin_sym_end, - STATE(385), 2, + STATE(390), 2, sym_comment, sym_include, - ACTIONS(870), 20, + ACTIONS(876), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36048,7 +36203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - aux_sym_else_do_statement_token1, + anon_sym_ELSE, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36061,17 +36216,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30061] = 5, + [30227] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(872), 1, + ACTIONS(878), 1, ts_builtin_sym_end, - STATE(386), 2, + STATE(391), 2, sym_comment, sym_include, - ACTIONS(874), 20, + ACTIONS(880), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36079,7 +36234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - aux_sym_else_do_statement_token1, + anon_sym_ELSE, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36092,17 +36247,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30097] = 4, + [30263] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(387), 2, + ACTIONS(882), 1, + ts_builtin_sym_end, + STATE(392), 2, sym_comment, sym_include, - ACTIONS(874), 21, + ACTIONS(848), 20, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36122,17 +36278,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30131] = 4, + [30299] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(388), 2, + ACTIONS(884), 1, + ts_builtin_sym_end, + STATE(393), 2, sym_comment, sym_include, - ACTIONS(856), 21, + ACTIONS(852), 20, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36152,17 +36309,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30165] = 5, + [30335] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(876), 1, + ACTIONS(886), 1, ts_builtin_sym_end, - STATE(389), 2, + STATE(394), 2, sym_comment, sym_include, - ACTIONS(878), 20, + ACTIONS(888), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36183,25 +36340,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30201] = 5, + [30371] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(880), 1, - ts_builtin_sym_end, - STATE(390), 2, + STATE(395), 2, sym_comment, sym_include, - ACTIONS(882), 20, + ACTIONS(890), 21, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - aux_sym_else_do_statement_token1, + anon_sym_ELSE, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36214,17 +36370,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30237] = 5, + [30405] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(884), 1, + ACTIONS(892), 1, ts_builtin_sym_end, - STATE(391), 2, + STATE(396), 2, sym_comment, sym_include, - ACTIONS(886), 20, + ACTIONS(894), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36245,18 +36401,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30273] = 5, + [30441] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(888), 1, - ts_builtin_sym_end, - STATE(392), 2, + STATE(397), 2, sym_comment, sym_include, - ACTIONS(890), 20, + ACTIONS(896), 21, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36276,15 +36431,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30309] = 4, + [30475] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(393), 2, + STATE(398), 2, sym_comment, sym_include, - ACTIONS(882), 21, + ACTIONS(898), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36306,15 +36461,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30343] = 4, + [30509] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(394), 2, + STATE(399), 2, sym_comment, sym_include, - ACTIONS(892), 21, + ACTIONS(870), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36336,25 +36491,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30377] = 5, + [30543] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(894), 1, - ts_builtin_sym_end, - STATE(395), 2, + STATE(400), 2, sym_comment, sym_include, - ACTIONS(866), 20, + ACTIONS(858), 21, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - anon_sym_ELSE, + aux_sym_else_do_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36367,15 +36521,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30413] = 4, + [30577] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(396), 2, + STATE(401), 2, sym_comment, sym_include, - ACTIONS(890), 21, + ACTIONS(894), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36397,15 +36551,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30447] = 4, + [30611] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(397), 2, + STATE(402), 2, sym_comment, sym_include, - ACTIONS(870), 21, + ACTIONS(888), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36414,7 +36568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_if_do_statement_token1, aux_sym_if_do_statement_token3, - aux_sym_else_do_statement_token1, + anon_sym_ELSE, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -36427,15 +36581,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30481] = 4, + [30645] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(398), 2, + STATE(403), 2, sym_comment, sym_include, - ACTIONS(886), 21, + ACTIONS(876), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36457,17 +36611,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30515] = 4, + [30679] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(399), 2, + ACTIONS(900), 1, + ts_builtin_sym_end, + STATE(404), 2, sym_comment, sym_include, - ACTIONS(860), 21, + ACTIONS(898), 20, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36487,15 +36642,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30549] = 4, + [30715] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(400), 2, + STATE(405), 2, sym_comment, sym_include, - ACTIONS(864), 21, + ACTIONS(880), 21, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -36517,17 +36672,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30583] = 4, + [30749] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(401), 2, + ACTIONS(902), 1, + ts_builtin_sym_end, + STATE(406), 2, sym_comment, sym_include, - ACTIONS(850), 21, + ACTIONS(896), 20, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36547,167 +36703,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30617] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(402), 2, - sym_comment, - sym_include, - ACTIONS(896), 21, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [30651] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(403), 2, - sym_comment, - sym_include, - ACTIONS(898), 21, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [30685] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(404), 2, - sym_comment, - sym_include, - ACTIONS(900), 21, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [30719] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(405), 2, - sym_comment, - sym_include, - ACTIONS(902), 21, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [30753] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - STATE(406), 2, - sym_comment, - sym_include, - ACTIONS(904), 21, - sym_identifier, - sym_null_expression, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - anon_sym_LPAREN, - aux_sym_unary_expression_token1, - aux_sym_unary_expression_token2, - aux_sym_ambiguous_expression_token1, - aux_sym_current_changed_expression_token1, - aux_sym_locked_expression_token1, - aux_sym_input_expression_token1, - sym_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_if_do_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [30787] = 4, + [30785] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(904), 1, + ts_builtin_sym_end, STATE(407), 2, sym_comment, sym_include, - ACTIONS(878), 21, + ACTIONS(890), 20, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36737,7 +36744,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(408), 2, sym_comment, sym_include, - ACTIONS(892), 20, + ACTIONS(862), 20, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36816,18 +36823,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30923] = 5, + [30923] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(912), 1, - ts_builtin_sym_end, STATE(411), 2, sym_comment, sym_include, - ACTIONS(914), 19, + ACTIONS(912), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36846,17 +36852,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30958] = 5, + [30956] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(862), 1, + ACTIONS(914), 1, ts_builtin_sym_end, STATE(412), 2, sym_comment, sym_include, - ACTIONS(864), 19, + ACTIONS(916), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36876,17 +36882,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [30993] = 5, + [30991] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(852), 1, + ACTIONS(918), 1, ts_builtin_sym_end, STATE(413), 2, sym_comment, sym_include, - ACTIONS(846), 19, + ACTIONS(920), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36906,17 +36912,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31028] = 5, + [31026] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(848), 1, + ACTIONS(904), 1, ts_builtin_sym_end, STATE(414), 2, sym_comment, sym_include, - ACTIONS(850), 19, + ACTIONS(890), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36936,18 +36942,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31063] = 5, + [31061] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(916), 1, - ts_builtin_sym_end, STATE(415), 2, sym_comment, sym_include, - ACTIONS(908), 19, + ACTIONS(922), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -36966,17 +36971,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31098] = 5, + [31094] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(918), 1, + ACTIONS(924), 1, ts_builtin_sym_end, STATE(416), 2, sym_comment, sym_include, - ACTIONS(920), 19, + ACTIONS(926), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -36996,17 +37001,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31133] = 5, + [31129] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(876), 1, + ACTIONS(928), 1, ts_builtin_sym_end, STATE(417), 2, sym_comment, sym_include, - ACTIONS(878), 19, + ACTIONS(930), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37026,18 +37031,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31168] = 5, + [31164] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(922), 1, - ts_builtin_sym_end, STATE(418), 2, sym_comment, sym_include, - ACTIONS(924), 19, + ACTIONS(880), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -37056,17 +37060,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31203] = 5, + [31197] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(926), 1, + ACTIONS(932), 1, ts_builtin_sym_end, STATE(419), 2, sym_comment, sym_include, - ACTIONS(928), 19, + ACTIONS(934), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37086,17 +37090,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31238] = 5, + [31232] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(930), 1, + ACTIONS(900), 1, ts_builtin_sym_end, STATE(420), 2, sym_comment, sym_include, - ACTIONS(932), 19, + ACTIONS(898), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37116,17 +37120,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31273] = 5, + [31267] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(934), 1, + ACTIONS(936), 1, ts_builtin_sym_end, STATE(421), 2, sym_comment, sym_include, - ACTIONS(936), 19, + ACTIONS(938), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37146,17 +37150,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31308] = 5, + [31302] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(938), 1, + ACTIONS(940), 1, ts_builtin_sym_end, STATE(422), 2, sym_comment, sym_include, - ACTIONS(940), 19, + ACTIONS(942), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37176,17 +37180,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31343] = 5, + [31337] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(942), 1, + ACTIONS(944), 1, ts_builtin_sym_end, STATE(423), 2, sym_comment, sym_include, - ACTIONS(944), 19, + ACTIONS(946), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37206,17 +37210,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31378] = 5, + [31372] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(946), 1, + ACTIONS(948), 1, ts_builtin_sym_end, STATE(424), 2, sym_comment, sym_include, - ACTIONS(948), 19, + ACTIONS(950), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37236,17 +37240,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31413] = 5, + [31407] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(888), 1, + ACTIONS(952), 1, ts_builtin_sym_end, STATE(425), 2, sym_comment, sym_include, - ACTIONS(890), 19, + ACTIONS(910), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37266,17 +37270,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31448] = 4, + [31442] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(954), 1, + ts_builtin_sym_end, STATE(426), 2, sym_comment, sym_include, - ACTIONS(866), 20, + ACTIONS(956), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -37295,17 +37300,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31481] = 5, + [31477] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(950), 1, + ACTIONS(958), 1, ts_builtin_sym_end, STATE(427), 2, sym_comment, sym_include, - ACTIONS(952), 19, + ACTIONS(960), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37325,17 +37330,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31516] = 5, + [31512] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(962), 1, ts_builtin_sym_end, STATE(428), 2, sym_comment, sym_include, - ACTIONS(956), 19, + ACTIONS(964), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37355,17 +37360,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31551] = 5, + [31547] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(958), 1, + ACTIONS(966), 1, ts_builtin_sym_end, STATE(429), 2, sym_comment, sym_include, - ACTIONS(960), 19, + ACTIONS(968), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37385,17 +37390,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31586] = 5, + [31582] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(962), 1, + ACTIONS(970), 1, ts_builtin_sym_end, STATE(430), 2, sym_comment, sym_include, - ACTIONS(964), 19, + ACTIONS(972), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37415,17 +37420,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31621] = 5, + [31617] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(884), 1, + ACTIONS(974), 1, ts_builtin_sym_end, STATE(431), 2, sym_comment, sym_include, - ACTIONS(886), 19, + ACTIONS(908), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37445,17 +37450,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31656] = 5, + [31652] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(966), 1, + ACTIONS(976), 1, ts_builtin_sym_end, STATE(432), 2, sym_comment, sym_include, - ACTIONS(968), 19, + ACTIONS(978), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37475,17 +37480,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31691] = 5, + [31687] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(970), 1, + ACTIONS(980), 1, ts_builtin_sym_end, STATE(433), 2, sym_comment, sym_include, - ACTIONS(972), 19, + ACTIONS(982), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37505,17 +37510,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31726] = 5, + [31722] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(974), 1, + ACTIONS(984), 1, ts_builtin_sym_end, STATE(434), 2, sym_comment, sym_include, - ACTIONS(976), 19, + ACTIONS(986), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37535,17 +37540,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31761] = 5, + [31757] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(978), 1, + ACTIONS(988), 1, ts_builtin_sym_end, STATE(435), 2, sym_comment, sym_include, - ACTIONS(980), 19, + ACTIONS(990), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37565,17 +37570,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31796] = 5, + [31792] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(982), 1, + ACTIONS(992), 1, ts_builtin_sym_end, STATE(436), 2, sym_comment, sym_include, - ACTIONS(984), 19, + ACTIONS(994), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37595,18 +37600,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31831] = 5, + [31827] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(974), 1, - ts_builtin_sym_end, STATE(437), 2, sym_comment, sym_include, - ACTIONS(976), 19, + ACTIONS(996), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -37625,17 +37629,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31866] = 5, + [31860] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(986), 1, + ACTIONS(992), 1, ts_builtin_sym_end, STATE(438), 2, sym_comment, sym_include, - ACTIONS(988), 19, + ACTIONS(994), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37655,17 +37659,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31901] = 5, + [31895] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(990), 1, + ACTIONS(998), 1, ts_builtin_sym_end, STATE(439), 2, sym_comment, sym_include, - ACTIONS(992), 19, + ACTIONS(1000), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37685,18 +37689,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31936] = 5, + [31930] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(906), 1, - ts_builtin_sym_end, STATE(440), 2, sym_comment, sym_include, - ACTIONS(892), 19, + ACTIONS(1002), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -37715,17 +37718,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [31971] = 5, + [31963] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(994), 1, + ACTIONS(1004), 1, ts_builtin_sym_end, STATE(441), 2, sym_comment, sym_include, - ACTIONS(996), 19, + ACTIONS(1006), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37745,17 +37748,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32006] = 5, + [31998] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(1008), 1, ts_builtin_sym_end, STATE(442), 2, sym_comment, sym_include, - ACTIONS(1000), 19, + ACTIONS(1010), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37775,17 +37778,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32041] = 5, + [32033] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1002), 1, + ACTIONS(1012), 1, ts_builtin_sym_end, STATE(443), 2, sym_comment, sym_include, - ACTIONS(1004), 19, + ACTIONS(1014), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37805,17 +37808,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32076] = 5, + [32068] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1006), 1, + ACTIONS(1016), 1, ts_builtin_sym_end, STATE(444), 2, sym_comment, sym_include, - ACTIONS(1008), 19, + ACTIONS(1018), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37835,17 +37838,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32111] = 5, + [32103] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1010), 1, + ACTIONS(1020), 1, ts_builtin_sym_end, STATE(445), 2, sym_comment, sym_include, - ACTIONS(1012), 19, + ACTIONS(1022), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37865,17 +37868,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32146] = 5, + [32138] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1014), 1, + ACTIONS(1024), 1, ts_builtin_sym_end, STATE(446), 2, sym_comment, sym_include, - ACTIONS(1016), 19, + ACTIONS(1026), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37895,17 +37898,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32181] = 5, + [32173] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1018), 1, + ACTIONS(1028), 1, ts_builtin_sym_end, STATE(447), 2, sym_comment, sym_include, - ACTIONS(1020), 19, + ACTIONS(1030), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37925,17 +37928,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32216] = 5, + [32208] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1022), 1, + ACTIONS(854), 1, ts_builtin_sym_end, STATE(448), 2, sym_comment, sym_include, - ACTIONS(1024), 19, + ACTIONS(846), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -37955,18 +37958,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32251] = 5, + [32243] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1026), 1, - ts_builtin_sym_end, STATE(449), 2, sym_comment, sym_include, - ACTIONS(1028), 19, + ACTIONS(1032), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -37985,17 +37987,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32286] = 5, + [32276] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1030), 1, + ACTIONS(1034), 1, ts_builtin_sym_end, STATE(450), 2, sym_comment, sym_include, - ACTIONS(1032), 19, + ACTIONS(1036), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38015,17 +38017,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32321] = 5, + [32311] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1034), 1, + ACTIONS(1038), 1, ts_builtin_sym_end, STATE(451), 2, sym_comment, sym_include, - ACTIONS(1036), 19, + ACTIONS(1040), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38045,17 +38047,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32356] = 5, + [32346] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1038), 1, + ACTIONS(1042), 1, ts_builtin_sym_end, STATE(452), 2, sym_comment, sym_include, - ACTIONS(1040), 19, + ACTIONS(1044), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38075,7 +38077,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32391] = 4, + [32381] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38083,7 +38085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(453), 2, sym_comment, sym_include, - ACTIONS(1042), 20, + ACTIONS(1046), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -38104,7 +38106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32424] = 4, + [32414] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38112,7 +38114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(454), 2, sym_comment, sym_include, - ACTIONS(1044), 20, + ACTIONS(1048), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -38133,17 +38135,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32457] = 4, + [32447] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1050), 1, + ts_builtin_sym_end, STATE(455), 2, sym_comment, sym_include, - ACTIONS(1046), 20, + ACTIONS(1052), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38162,17 +38165,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32490] = 4, + [32482] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1054), 1, + ts_builtin_sym_end, STATE(456), 2, sym_comment, sym_include, - ACTIONS(1048), 20, + ACTIONS(1056), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38191,17 +38195,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32523] = 4, + [32517] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1058), 1, + ts_builtin_sym_end, STATE(457), 2, sym_comment, sym_include, - ACTIONS(1050), 20, + ACTIONS(1060), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38220,17 +38225,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32556] = 4, + [32552] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1062), 1, + ts_builtin_sym_end, STATE(458), 2, sym_comment, sym_include, - ACTIONS(1052), 20, + ACTIONS(1064), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38249,17 +38255,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32589] = 4, + [32587] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1066), 1, + ts_builtin_sym_end, STATE(459), 2, sym_comment, sym_include, - ACTIONS(1054), 20, + ACTIONS(1068), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38278,17 +38285,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32622] = 4, + [32622] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1070), 1, + ts_builtin_sym_end, STATE(460), 2, sym_comment, sym_include, - ACTIONS(1056), 20, + ACTIONS(1072), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38307,18 +38315,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32655] = 5, + [32657] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1058), 1, - ts_builtin_sym_end, STATE(461), 2, sym_comment, sym_include, - ACTIONS(1060), 19, + ACTIONS(1074), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38345,7 +38352,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(462), 2, sym_comment, sym_include, - ACTIONS(1062), 20, + ACTIONS(1076), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -38366,18 +38373,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32723] = 5, + [32723] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1064), 1, - ts_builtin_sym_end, STATE(463), 2, sym_comment, sym_include, - ACTIONS(1066), 19, + ACTIONS(1056), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38396,17 +38402,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32758] = 4, + [32756] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1078), 1, + ts_builtin_sym_end, STATE(464), 2, sym_comment, sym_include, - ACTIONS(1068), 20, + ACTIONS(1076), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38430,12 +38437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1070), 1, + ACTIONS(1080), 1, ts_builtin_sym_end, STATE(465), 2, sym_comment, sym_include, - ACTIONS(1072), 19, + ACTIONS(1082), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38460,12 +38467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1074), 1, + ACTIONS(1084), 1, ts_builtin_sym_end, STATE(466), 2, sym_comment, sym_include, - ACTIONS(1076), 19, + ACTIONS(1086), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38485,17 +38492,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32861] = 4, + [32861] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1088), 1, + ts_builtin_sym_end, STATE(467), 2, sym_comment, sym_include, - ACTIONS(1078), 20, + ACTIONS(1074), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38514,7 +38522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32894] = 4, + [32896] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38522,7 +38530,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(468), 2, sym_comment, sym_include, - ACTIONS(1080), 20, + ACTIONS(1044), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -38543,17 +38551,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32927] = 4, + [32929] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1090), 1, + ts_builtin_sym_end, STATE(469), 2, sym_comment, sym_include, - ACTIONS(1080), 20, + ACTIONS(1092), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38572,17 +38581,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32960] = 5, + [32964] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1082), 1, + ACTIONS(1094), 1, ts_builtin_sym_end, STATE(470), 2, sym_comment, sym_include, - ACTIONS(1084), 19, + ACTIONS(1096), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38602,17 +38611,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [32995] = 4, + [32999] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1098), 1, + ts_builtin_sym_end, STATE(471), 2, sym_comment, sym_include, - ACTIONS(1086), 20, + ACTIONS(1100), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38631,17 +38641,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33028] = 4, + [33034] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1098), 1, + ts_builtin_sym_end, STATE(472), 2, sym_comment, sym_include, - ACTIONS(1088), 20, + ACTIONS(1100), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38660,18 +38671,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33061] = 5, + [33069] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1090), 1, - ts_builtin_sym_end, STATE(473), 2, sym_comment, sym_include, - ACTIONS(1092), 19, + ACTIONS(1040), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38690,17 +38700,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33096] = 5, + [33102] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1094), 1, + ACTIONS(1098), 1, ts_builtin_sym_end, STATE(474), 2, sym_comment, sym_include, - ACTIONS(1096), 19, + ACTIONS(1100), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38720,7 +38730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33131] = 5, + [33137] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38750,7 +38760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33166] = 5, + [33172] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38760,7 +38770,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(476), 2, sym_comment, sym_include, - ACTIONS(1104), 19, + ACTIONS(1048), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38780,18 +38790,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33201] = 5, + [33207] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, - ts_builtin_sym_end, STATE(477), 2, sym_comment, sym_include, - ACTIONS(1104), 19, + ACTIONS(1036), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38810,17 +38819,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33236] = 4, + [33240] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1104), 1, + ts_builtin_sym_end, STATE(478), 2, sym_comment, sym_include, - ACTIONS(1106), 20, + ACTIONS(1106), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38839,17 +38849,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33269] = 5, + [33275] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, + ACTIONS(1108), 1, ts_builtin_sym_end, STATE(479), 2, sym_comment, sym_include, - ACTIONS(1104), 19, + ACTIONS(1110), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38869,17 +38879,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33304] = 5, + [33310] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1102), 1, + ACTIONS(1112), 1, ts_builtin_sym_end, STATE(480), 2, sym_comment, sym_include, - ACTIONS(1104), 19, + ACTIONS(1114), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -38899,17 +38909,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33339] = 4, + [33345] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(902), 1, + ts_builtin_sym_end, STATE(481), 2, sym_comment, sym_include, - ACTIONS(1108), 20, + ACTIONS(896), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38928,7 +38939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33372] = 4, + [33380] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -38936,7 +38947,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(482), 2, sym_comment, sym_include, - ACTIONS(1110), 20, + ACTIONS(1116), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -38957,18 +38968,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33405] = 5, + [33413] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1112), 1, - ts_builtin_sym_end, STATE(483), 2, sym_comment, sym_include, - ACTIONS(1114), 19, + ACTIONS(1118), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -38987,18 +38997,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33440] = 5, + [33446] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1116), 1, - ts_builtin_sym_end, STATE(484), 2, sym_comment, sym_include, - ACTIONS(1118), 19, + ACTIONS(1018), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39017,7 +39026,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33475] = 5, + [33479] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39027,7 +39036,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(485), 2, sym_comment, sym_include, - ACTIONS(1110), 19, + ACTIONS(1122), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39047,7 +39056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33510] = 4, + [33514] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39055,7 +39064,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(486), 2, sym_comment, sym_include, - ACTIONS(1118), 20, + ACTIONS(1124), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39076,17 +39085,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33543] = 4, + [33547] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1126), 1, + ts_builtin_sym_end, STATE(487), 2, sym_comment, sym_include, - ACTIONS(1114), 20, + ACTIONS(1128), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39105,7 +39115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33576] = 4, + [33582] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39113,7 +39123,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(488), 2, sym_comment, sym_include, - ACTIONS(1104), 20, + ACTIONS(1130), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39134,17 +39144,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33609] = 4, + [33615] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1132), 1, + ts_builtin_sym_end, STATE(489), 2, sym_comment, sym_include, - ACTIONS(1104), 20, + ACTIONS(1134), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39163,17 +39174,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33642] = 5, + [33650] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1122), 1, + ACTIONS(1136), 1, ts_builtin_sym_end, STATE(490), 2, sym_comment, sym_include, - ACTIONS(1108), 19, + ACTIONS(1138), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39193,7 +39204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33677] = 4, + [33685] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39201,7 +39212,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(491), 2, sym_comment, sym_include, - ACTIONS(1104), 20, + ACTIONS(1006), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39222,17 +39233,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33710] = 4, + [33718] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1140), 1, + ts_builtin_sym_end, STATE(492), 2, sym_comment, sym_include, - ACTIONS(1104), 20, + ACTIONS(1046), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39251,18 +39263,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33743] = 5, + [33753] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - ts_builtin_sym_end, STATE(493), 2, sym_comment, sym_include, - ACTIONS(910), 19, + ACTIONS(1142), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39281,17 +39292,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33778] = 5, + [33786] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(1144), 1, ts_builtin_sym_end, STATE(494), 2, sym_comment, sym_include, - ACTIONS(1106), 19, + ACTIONS(1146), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39311,7 +39322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33813] = 4, + [33821] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39319,7 +39330,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(495), 2, sym_comment, sym_include, - ACTIONS(1100), 20, + ACTIONS(1148), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39340,7 +39351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33846] = 4, + [33854] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39348,7 +39359,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(496), 2, sym_comment, sym_include, - ACTIONS(1084), 20, + ACTIONS(1150), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39369,7 +39380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33879] = 4, + [33887] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39377,7 +39388,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(497), 2, sym_comment, sym_include, - ACTIONS(1076), 20, + ACTIONS(1152), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39398,7 +39409,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33912] = 4, + [33920] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39406,7 +39417,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(498), 2, sym_comment, sym_include, - ACTIONS(1072), 20, + ACTIONS(1154), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39427,17 +39438,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33945] = 5, + [33953] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1128), 1, + ACTIONS(1156), 1, ts_builtin_sym_end, STATE(499), 2, sym_comment, sym_include, - ACTIONS(1088), 19, + ACTIONS(1158), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39457,17 +39468,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [33980] = 5, + [33988] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1130), 1, + ACTIONS(1160), 1, ts_builtin_sym_end, STATE(500), 2, sym_comment, sym_include, - ACTIONS(1086), 19, + ACTIONS(1162), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39487,7 +39498,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34015] = 4, + [34023] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39495,7 +39506,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(501), 2, sym_comment, sym_include, - ACTIONS(1066), 20, + ACTIONS(982), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39516,7 +39527,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34048] = 4, + [34056] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39524,7 +39535,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(502), 2, sym_comment, sym_include, - ACTIONS(1060), 20, + ACTIONS(968), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39545,18 +39556,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34081] = 5, + [34089] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1132), 1, - ts_builtin_sym_end, STATE(503), 2, sym_comment, sym_include, - ACTIONS(1134), 19, + ACTIONS(1164), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39575,17 +39585,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34116] = 5, + [34122] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1136), 1, + ACTIONS(1166), 1, ts_builtin_sym_end, STATE(504), 2, sym_comment, sym_include, - ACTIONS(1138), 19, + ACTIONS(1168), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39605,18 +39615,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34151] = 5, + [34157] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1140), 1, - ts_builtin_sym_end, STATE(505), 2, sym_comment, sym_include, - ACTIONS(1080), 19, + ACTIONS(1170), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39635,17 +39644,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34186] = 5, + [34190] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1140), 1, + ACTIONS(1172), 1, ts_builtin_sym_end, STATE(506), 2, sym_comment, sym_include, - ACTIONS(1080), 19, + ACTIONS(1174), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39665,17 +39674,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34221] = 4, + [34225] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1172), 1, + ts_builtin_sym_end, STATE(507), 2, sym_comment, sym_include, - ACTIONS(1040), 20, + ACTIONS(1174), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39694,7 +39704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34254] = 4, + [34260] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39702,7 +39712,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(508), 2, sym_comment, sym_include, - ACTIONS(1036), 20, + ACTIONS(946), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39723,18 +39733,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34287] = 5, + [34293] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1142), 1, - ts_builtin_sym_end, STATE(509), 2, sym_comment, sym_include, - ACTIONS(1078), 19, + ACTIONS(1174), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39753,17 +39762,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34322] = 4, + [34326] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1176), 1, + ts_builtin_sym_end, STATE(510), 2, sym_comment, sym_include, - ACTIONS(1020), 20, + ACTIONS(1170), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39782,18 +39792,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34355] = 5, + [34361] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1144), 1, - ts_builtin_sym_end, STATE(511), 2, sym_comment, sym_include, - ACTIONS(1068), 19, + ACTIONS(1174), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39812,17 +39821,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34390] = 4, + [34394] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1178), 1, + ts_builtin_sym_end, STATE(512), 2, sym_comment, sym_include, - ACTIONS(1016), 20, + ACTIONS(1164), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39841,7 +39851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34423] = 4, + [34429] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39849,7 +39859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(513), 2, sym_comment, sym_include, - ACTIONS(1012), 20, + ACTIONS(1162), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39870,7 +39880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34456] = 4, + [34462] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -39878,7 +39888,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(514), 2, sym_comment, sym_include, - ACTIONS(976), 20, + ACTIONS(1158), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -39899,18 +39909,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34489] = 5, + [34495] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1146), 1, - ts_builtin_sym_end, STATE(515), 2, sym_comment, sym_include, - ACTIONS(1062), 19, + ACTIONS(898), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39929,17 +39938,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34524] = 4, + [34528] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1180), 1, + ts_builtin_sym_end, STATE(516), 2, sym_comment, sym_include, - ACTIONS(976), 20, + ACTIONS(1154), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -39958,17 +39968,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34557] = 5, + [34563] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1148), 1, + ACTIONS(1182), 1, ts_builtin_sym_end, STATE(517), 2, sym_comment, sym_include, - ACTIONS(1150), 19, + ACTIONS(1032), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -39988,18 +39998,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34592] = 5, + [34598] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1152), 1, - ts_builtin_sym_end, STATE(518), 2, sym_comment, sym_include, - ACTIONS(1154), 19, + ACTIONS(934), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40018,17 +40027,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34627] = 4, + [34631] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1184), 1, + ts_builtin_sym_end, STATE(519), 2, sym_comment, sym_include, - ACTIONS(960), 20, + ACTIONS(1002), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40047,18 +40057,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34660] = 5, + [34666] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1156), 1, - ts_builtin_sym_end, STATE(520), 2, sym_comment, sym_include, - ACTIONS(1056), 19, + ACTIONS(1138), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40077,17 +40086,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34695] = 4, + [34699] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1186), 1, + ts_builtin_sym_end, STATE(521), 2, sym_comment, sym_include, - ACTIONS(948), 20, + ACTIONS(1152), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40106,7 +40116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34728] = 4, + [34734] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40114,7 +40124,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(522), 2, sym_comment, sym_include, - ACTIONS(944), 20, + ACTIONS(1134), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40135,7 +40145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34761] = 4, + [34767] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40143,7 +40153,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(523), 2, sym_comment, sym_include, - ACTIONS(940), 20, + ACTIONS(1122), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40164,7 +40174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34794] = 4, + [34800] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40172,7 +40182,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(524), 2, sym_comment, sym_include, - ACTIONS(936), 20, + ACTIONS(1114), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40193,18 +40203,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34827] = 5, + [34833] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1158), 1, - ts_builtin_sym_end, STATE(525), 2, sym_comment, sym_include, - ACTIONS(1054), 19, + ACTIONS(1110), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40223,17 +40232,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34862] = 5, + [34866] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1160), 1, + ACTIONS(1188), 1, ts_builtin_sym_end, STATE(526), 2, sym_comment, sym_include, - ACTIONS(1052), 19, + ACTIONS(1150), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -40253,17 +40262,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34897] = 4, + [34901] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1190), 1, + ts_builtin_sym_end, STATE(527), 2, sym_comment, sym_include, - ACTIONS(928), 20, + ACTIONS(1148), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40282,17 +40292,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34930] = 5, + [34936] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1162), 1, + ACTIONS(878), 1, ts_builtin_sym_end, STATE(528), 2, sym_comment, sym_include, - ACTIONS(1050), 19, + ACTIONS(880), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -40312,17 +40322,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34965] = 4, + [34971] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1192), 1, + ts_builtin_sym_end, STATE(529), 2, sym_comment, sym_include, - ACTIONS(924), 20, + ACTIONS(1142), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40341,7 +40352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [34998] = 4, + [35006] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40349,7 +40360,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(530), 2, sym_comment, sym_include, - ACTIONS(1154), 20, + ACTIONS(1100), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40370,18 +40381,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35031] = 5, + [35039] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1164), 1, - ts_builtin_sym_end, STATE(531), 2, sym_comment, sym_include, - ACTIONS(1166), 19, + ACTIONS(1100), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40400,18 +40410,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35066] = 5, + [35072] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1168), 1, - ts_builtin_sym_end, STATE(532), 2, sym_comment, sym_include, - ACTIONS(1048), 19, + ACTIONS(1100), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40430,17 +40439,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35101] = 5, + [35105] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1170), 1, + ACTIONS(1194), 1, ts_builtin_sym_end, STATE(533), 2, sym_comment, sym_include, - ACTIONS(1046), 19, + ACTIONS(1130), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -40460,17 +40469,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35136] = 4, + [35140] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1196), 1, + ts_builtin_sym_end, STATE(534), 2, sym_comment, sym_include, - ACTIONS(1150), 20, + ACTIONS(1124), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40489,18 +40499,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35169] = 5, + [35175] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1172), 1, - ts_builtin_sym_end, STATE(535), 2, sym_comment, sym_include, - ACTIONS(1044), 19, + ACTIONS(1100), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40519,17 +40528,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35204] = 4, + [35208] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1198), 1, + ts_builtin_sym_end, STATE(536), 2, sym_comment, sym_include, - ACTIONS(1166), 20, + ACTIONS(1118), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40548,7 +40558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35237] = 4, + [35243] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40556,7 +40566,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(537), 2, sym_comment, sym_include, - ACTIONS(1174), 20, + ACTIONS(1096), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40577,18 +40587,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35270] = 5, + [35276] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1176), 1, - ts_builtin_sym_end, STATE(538), 2, sym_comment, sym_include, - ACTIONS(1042), 19, + ACTIONS(930), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40607,17 +40616,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35305] = 4, + [35309] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1200), 1, + ts_builtin_sym_end, STATE(539), 2, sym_comment, sym_include, - ACTIONS(1178), 20, + ACTIONS(1116), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40636,7 +40646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35338] = 4, + [35344] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40644,7 +40654,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(540), 2, sym_comment, sym_include, - ACTIONS(1180), 20, + ACTIONS(1082), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40665,17 +40675,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35371] = 4, + [35377] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1202), 1, + ts_builtin_sym_end, STATE(541), 2, sym_comment, sym_include, - ACTIONS(1182), 20, + ACTIONS(1204), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40694,17 +40705,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35404] = 5, + [35412] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1184), 1, + ACTIONS(1206), 1, ts_builtin_sym_end, STATE(542), 2, sym_comment, sym_include, - ACTIONS(1174), 19, + ACTIONS(996), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -40724,7 +40735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35439] = 4, + [35447] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40732,7 +40743,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(543), 2, sym_comment, sym_include, - ACTIONS(1134), 20, + ACTIONS(1072), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40753,7 +40764,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35472] = 4, + [35480] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40761,7 +40772,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(544), 2, sym_comment, sym_include, - ACTIONS(988), 20, + ACTIONS(964), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40782,7 +40793,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35505] = 4, + [35513] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40790,7 +40801,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(545), 2, sym_comment, sym_include, - ACTIONS(984), 20, + ACTIONS(972), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40811,7 +40822,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35538] = 4, + [35546] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40819,7 +40830,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(546), 2, sym_comment, sym_include, - ACTIONS(968), 20, + ACTIONS(1068), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40840,7 +40851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35571] = 4, + [35579] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40848,7 +40859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(547), 2, sym_comment, sym_include, - ACTIONS(964), 20, + ACTIONS(986), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40869,7 +40880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35604] = 4, + [35612] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40877,7 +40888,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(548), 2, sym_comment, sym_include, - ACTIONS(1186), 20, + ACTIONS(990), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40898,7 +40909,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35637] = 4, + [35645] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40906,7 +40917,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(549), 2, sym_comment, sym_include, - ACTIONS(878), 20, + ACTIONS(1060), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40927,18 +40938,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35670] = 5, + [35678] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1188), 1, - ts_builtin_sym_end, STATE(550), 2, sym_comment, sym_include, - ACTIONS(1178), 19, + ACTIONS(846), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -40957,7 +40967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35705] = 4, + [35711] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -40965,7 +40975,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(551), 2, sym_comment, sym_include, - ACTIONS(1190), 20, + ACTIONS(1052), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -40986,17 +40996,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35738] = 4, + [35744] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1208), 1, + ts_builtin_sym_end, STATE(552), 2, sym_comment, sym_include, - ACTIONS(1192), 20, + ACTIONS(922), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41015,17 +41026,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35771] = 4, + [35779] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1210), 1, + ts_builtin_sym_end, STATE(553), 2, sym_comment, sym_include, - ACTIONS(1194), 20, + ACTIONS(912), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41044,7 +41056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35804] = 4, + [35814] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41052,7 +41064,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(554), 2, sym_comment, sym_include, - ACTIONS(1196), 20, + ACTIONS(920), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41073,7 +41085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35837] = 4, + [35847] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41081,7 +41093,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(555), 2, sym_comment, sym_include, - ACTIONS(1198), 20, + ACTIONS(1030), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41102,7 +41114,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35870] = 4, + [35880] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41110,7 +41122,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(556), 2, sym_comment, sym_include, - ACTIONS(1200), 20, + ACTIONS(1026), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41131,7 +41143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35903] = 4, + [35913] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41139,7 +41151,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(557), 2, sym_comment, sym_include, - ACTIONS(1202), 20, + ACTIONS(1014), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41160,7 +41172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35936] = 4, + [35946] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41168,7 +41180,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(558), 2, sym_comment, sym_include, - ACTIONS(850), 20, + ACTIONS(1010), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41189,7 +41201,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [35969] = 4, + [35979] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41197,7 +41209,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(559), 2, sym_comment, sym_include, - ACTIONS(914), 20, + ACTIONS(876), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41218,7 +41230,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36002] = 4, + [36012] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41226,7 +41238,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(560), 2, sym_comment, sym_include, - ACTIONS(864), 20, + ACTIONS(1212), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41247,7 +41259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36035] = 4, + [36045] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41255,7 +41267,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(561), 2, sym_comment, sym_include, - ACTIONS(846), 20, + ACTIONS(888), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41276,7 +41288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36068] = 4, + [36078] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41284,7 +41296,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(562), 2, sym_comment, sym_include, - ACTIONS(1204), 20, + ACTIONS(894), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41305,7 +41317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36101] = 4, + [36111] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41313,7 +41325,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(563), 2, sym_comment, sym_include, - ACTIONS(1206), 20, + ACTIONS(1000), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41334,7 +41346,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36134] = 4, + [36144] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41342,7 +41354,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(564), 2, sym_comment, sym_include, - ACTIONS(1138), 20, + ACTIONS(994), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41363,7 +41375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36167] = 4, + [36177] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41371,7 +41383,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(565), 2, sym_comment, sym_include, - ACTIONS(1096), 20, + ACTIONS(994), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41392,7 +41404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36200] = 4, + [36210] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41400,7 +41412,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(566), 2, sym_comment, sym_include, - ACTIONS(1092), 20, + ACTIONS(978), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41421,7 +41433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36233] = 4, + [36243] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41429,7 +41441,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(567), 2, sym_comment, sym_include, - ACTIONS(1032), 20, + ACTIONS(960), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41450,18 +41462,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36266] = 5, + [36276] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1208), 1, - ts_builtin_sym_end, STATE(568), 2, sym_comment, sym_include, - ACTIONS(1180), 19, + ACTIONS(956), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41480,7 +41491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36301] = 4, + [36309] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41488,7 +41499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(569), 2, sym_comment, sym_include, - ACTIONS(1028), 20, + ACTIONS(1214), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41509,7 +41520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36334] = 4, + [36342] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41517,7 +41528,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(570), 2, sym_comment, sym_include, - ACTIONS(1024), 20, + ACTIONS(950), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41538,7 +41549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36367] = 4, + [36375] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41546,7 +41557,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(571), 2, sym_comment, sym_include, - ACTIONS(1008), 20, + ACTIONS(942), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41567,17 +41578,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36400] = 4, + [36408] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(892), 1, + ts_builtin_sym_end, STATE(572), 2, sym_comment, sym_include, - ACTIONS(1004), 20, + ACTIONS(894), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41596,17 +41608,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36433] = 5, + [36443] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1210), 1, + ACTIONS(886), 1, ts_builtin_sym_end, STATE(573), 2, sym_comment, sym_include, - ACTIONS(1182), 19, + ACTIONS(888), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -41626,18 +41638,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36468] = 5, + [36478] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1212), 1, - ts_builtin_sym_end, STATE(574), 2, sym_comment, sym_include, - ACTIONS(1206), 19, + ACTIONS(938), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41656,17 +41667,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36503] = 5, + [36511] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1214), 1, + ACTIONS(1216), 1, ts_builtin_sym_end, STATE(575), 2, sym_comment, sym_include, - ACTIONS(1186), 19, + ACTIONS(1214), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -41686,7 +41697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36538] = 4, + [36546] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41694,7 +41705,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(576), 2, sym_comment, sym_include, - ACTIONS(1000), 20, + ACTIONS(916), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41715,7 +41726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36571] = 4, + [36579] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41723,7 +41734,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(577), 2, sym_comment, sym_include, - ACTIONS(996), 20, + ACTIONS(1064), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41744,7 +41755,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36604] = 4, + [36612] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41752,7 +41763,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(578), 2, sym_comment, sym_include, - ACTIONS(892), 20, + ACTIONS(1128), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41773,18 +41784,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36637] = 5, + [36645] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1216), 1, - ts_builtin_sym_end, STATE(579), 2, sym_comment, sym_include, - ACTIONS(1190), 19, + ACTIONS(1146), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41803,18 +41813,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36672] = 5, + [36678] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1218), 1, - ts_builtin_sym_end, STATE(580), 2, sym_comment, sym_include, - ACTIONS(1192), 19, + ACTIONS(1168), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41833,17 +41842,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36707] = 4, + [36711] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1218), 1, + ts_builtin_sym_end, STATE(581), 2, sym_comment, sym_include, - ACTIONS(992), 20, + ACTIONS(1220), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41862,17 +41872,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36740] = 5, + [36746] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(894), 1, + ACTIONS(874), 1, ts_builtin_sym_end, STATE(582), 2, sym_comment, sym_include, - ACTIONS(866), 19, + ACTIONS(876), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -41892,7 +41902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36775] = 4, + [36781] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41900,7 +41910,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(583), 2, sym_comment, sym_include, - ACTIONS(980), 20, + ACTIONS(1106), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41921,17 +41931,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36808] = 4, + [36814] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1222), 1, + ts_builtin_sym_end, STATE(584), 2, sym_comment, sym_include, - ACTIONS(972), 20, + ACTIONS(1212), 19, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -41950,7 +41961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36841] = 4, + [36849] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -41958,7 +41969,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(585), 2, sym_comment, sym_include, - ACTIONS(886), 20, + ACTIONS(1220), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -41979,18 +41990,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36874] = 5, + [36882] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1220), 1, - ts_builtin_sym_end, STATE(586), 2, sym_comment, sym_include, - ACTIONS(1204), 19, + ACTIONS(896), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -42009,7 +42019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36909] = 4, + [36915] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -42017,7 +42027,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(587), 2, sym_comment, sym_include, - ACTIONS(920), 20, + ACTIONS(1086), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -42038,7 +42048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36942] = 4, + [36948] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -42046,7 +42056,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(588), 2, sym_comment, sym_include, - ACTIONS(932), 20, + ACTIONS(1022), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -42067,7 +42077,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [36975] = 4, + [36981] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -42075,7 +42085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(589), 2, sym_comment, sym_include, - ACTIONS(890), 20, + ACTIONS(926), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -42096,7 +42106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [37008] = 4, + [37014] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -42104,7 +42114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(590), 2, sym_comment, sym_include, - ACTIONS(952), 20, + ACTIONS(890), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -42125,7 +42135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [37041] = 4, + [37047] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -42133,7 +42143,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(591), 2, sym_comment, sym_include, - ACTIONS(956), 20, + ACTIONS(1204), 20, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -42154,18 +42164,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [37074] = 5, + [37080] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1222), 1, - ts_builtin_sym_end, STATE(592), 2, sym_comment, sym_include, - ACTIONS(1202), 19, + ACTIONS(1092), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -42184,18 +42193,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [37109] = 5, + [37113] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1224), 1, - ts_builtin_sym_end, STATE(593), 2, sym_comment, sym_include, - ACTIONS(1200), 19, + ACTIONS(1224), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -42214,18 +42222,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_catch_statement_token1, aux_sym_finally_statement_token1, aux_sym_accumulate_statement_token1, - [37144] = 5, + [37146] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1226), 1, - ts_builtin_sym_end, STATE(594), 2, sym_comment, sym_include, - ACTIONS(1198), 19, + ACTIONS(1226), 20, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, @@ -42254,7 +42261,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(595), 2, sym_comment, sym_include, - ACTIONS(1196), 19, + ACTIONS(1224), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -42284,7 +42291,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(596), 2, sym_comment, sym_include, - ACTIONS(1194), 19, + ACTIONS(1226), 19, sym_identifier, aux_sym_input_expression_token1, aux_sym_variable_definition_token1, @@ -42309,7 +42316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(749), 1, + STATE(987), 1, sym_primitive_type, STATE(597), 2, sym_comment, @@ -42338,7 +42345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(738), 1, sym_primitive_type, STATE(598), 2, sym_comment, @@ -42367,7 +42374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(756), 1, sym_primitive_type, STATE(599), 2, sym_comment, @@ -42396,7 +42403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(1096), 1, + STATE(749), 1, sym_primitive_type, STATE(600), 2, sym_comment, @@ -42425,7 +42432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(744), 1, + STATE(1160), 1, sym_primitive_type, STATE(601), 2, sym_comment, @@ -42454,7 +42461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(1158), 1, + STATE(895), 1, sym_primitive_type, STATE(602), 2, sym_comment, @@ -42483,7 +42490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(750), 1, sym_primitive_type, STATE(603), 2, sym_comment, @@ -42507,41 +42514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token15, aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, - [37494] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1238), 1, - aux_sym_buffer_definition_token2, - ACTIONS(1240), 1, - aux_sym_if_do_statement_token3, - ACTIONS(1242), 1, - aux_sym_repeat_statement_token1, - ACTIONS(1244), 1, - aux_sym_procedure_parameter_definition_token3, - STATE(1025), 1, - sym_assignment, - STATE(1026), 1, - sym_function_call, - STATE(1159), 1, - sym__case_body, - STATE(604), 2, - sym_comment, - sym_include, - STATE(821), 4, - sym_variable_assignment, - sym_function_call_statement, - sym_return_statement, - sym_abl_statement, - STATE(823), 4, - sym__terminated_statement, - sym_repeat_statement, - sym_do_block, - sym_for_statement, - [37541] = 15, + [37494] = 15, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42550,25 +42523,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(1246), 1, + ACTIONS(1236), 1, anon_sym_COLON, - ACTIONS(1248), 1, + ACTIONS(1238), 1, aux_sym_where_clause_token1, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - STATE(626), 1, + STATE(625), 1, sym_of, - STATE(647), 1, - aux_sym_for_statement_repeat1, - STATE(654), 1, + STATE(651), 1, sym_where_clause, - STATE(680), 1, + STATE(660), 1, + aux_sym_for_statement_repeat1, + STATE(678), 1, sym_query_tuning, - STATE(1071), 1, + STATE(1066), 1, sym_sort_clause, - STATE(605), 2, + STATE(604), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -42577,43 +42550,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37592] = 15, - ACTIONS(311), 1, + [37545] = 13, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(691), 1, - aux_sym_of_token1, + ACTIONS(1244), 1, + sym_identifier, + ACTIONS(1246), 1, + aux_sym_buffer_definition_token2, ACTIONS(1248), 1, - aux_sym_where_clause_token1, + aux_sym_if_do_statement_token3, ACTIONS(1250), 1, - aux_sym_sort_clause_token1, + aux_sym_repeat_statement_token1, ACTIONS(1252), 1, - aux_sym_sort_clause_token2, - ACTIONS(1254), 1, - anon_sym_COLON, - STATE(629), 1, - sym_of, - STATE(651), 1, - sym_where_clause, - STATE(659), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, - sym_query_tuning, - STATE(1101), 1, - sym_sort_clause, - STATE(606), 2, + aux_sym_procedure_parameter_definition_token3, + STATE(975), 1, + sym__case_branch_body, + STATE(1028), 1, + sym_assignment, + STATE(1029), 1, + sym_function_call, + STATE(605), 2, sym_comment, sym_include, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [37643] = 15, + STATE(794), 4, + sym__terminated_statement, + sym_repeat_statement, + sym_do_block, + sym_for_statement, + STATE(815), 4, + sym_variable_assignment, + sym_function_call_statement, + sym_return_statement, + sym_abl_statement, + [37592] = 15, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42622,25 +42593,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(1248), 1, + ACTIONS(1238), 1, aux_sym_where_clause_token1, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1256), 1, + ACTIONS(1254), 1, anon_sym_COLON, STATE(627), 1, sym_of, - STATE(657), 1, + STATE(645), 1, sym_where_clause, - STATE(660), 1, + STATE(659), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1063), 1, + STATE(1104), 1, sym_sort_clause, - STATE(607), 2, + STATE(606), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -42649,53 +42620,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37694] = 13, + [37643] = 13, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1236), 1, + ACTIONS(1244), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(1246), 1, aux_sym_buffer_definition_token2, - ACTIONS(1240), 1, + ACTIONS(1248), 1, aux_sym_if_do_statement_token3, - ACTIONS(1242), 1, + ACTIONS(1250), 1, aux_sym_repeat_statement_token1, - ACTIONS(1244), 1, + ACTIONS(1252), 1, aux_sym_procedure_parameter_definition_token3, - STATE(840), 1, - sym__case_body, - STATE(1025), 1, + STATE(851), 1, + sym__case_branch_body, + STATE(1028), 1, sym_assignment, - STATE(1026), 1, + STATE(1029), 1, sym_function_call, - STATE(608), 2, + STATE(607), 2, sym_comment, sym_include, - STATE(821), 4, - sym_variable_assignment, - sym_function_call_statement, - sym_return_statement, - sym_abl_statement, - STATE(823), 4, + STATE(794), 4, sym__terminated_statement, sym_repeat_statement, sym_do_block, sym_for_statement, - [37741] = 6, + STATE(815), 4, + sym_variable_assignment, + sym_function_call_statement, + sym_return_statement, + sym_abl_statement, + [37690] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__namedot, - STATE(68), 1, + STATE(67), 1, aux_sym_qualified_name_repeat1, - STATE(609), 2, + STATE(608), 2, sym_comment, sym_include, - ACTIONS(1258), 14, + ACTIONS(1256), 14, sym__terminator, anon_sym_RPAREN, anon_sym_COLON, @@ -42710,39 +42681,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [37774] = 12, + [37723] = 15, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, ACTIONS(689), 1, aux_sym_query_tuning_token6, ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(693), 1, - aux_sym__using_first_token1, + ACTIONS(1238), 1, + aux_sym_where_clause_token1, + ACTIONS(1240), 1, + aux_sym_sort_clause_token1, + ACTIONS(1242), 1, + aux_sym_sort_clause_token2, + ACTIONS(1258), 1, + anon_sym_COLON, + STATE(628), 1, + sym_of, + STATE(650), 1, + aux_sym_for_statement_repeat1, + STATE(658), 1, + sym_where_clause, + STATE(678), 1, + sym_query_tuning, + STATE(1042), 1, + sym_sort_clause, + STATE(609), 2, + sym_comment, + sym_include, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [37774] = 11, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, ACTIONS(1260), 1, anon_sym_RPAREN, - STATE(618), 1, - aux_sym_can_find_expression_repeat2, - STATE(632), 1, + ACTIONS(1262), 1, + aux_sym_where_clause_token1, + ACTIONS(1268), 1, + aux_sym_query_tuning_token6, + ACTIONS(1271), 1, + aux_sym_of_token1, + ACTIONS(1274), 1, + aux_sym__using_first_token1, + STATE(635), 1, sym__using_first, - STATE(610), 2, + STATE(610), 3, sym_comment, sym_include, - STATE(682), 3, + aux_sym_can_find_expression_repeat2, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(687), 5, + ACTIONS(1265), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37818] = 12, + [37816] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42755,16 +42761,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1262), 1, + ACTIONS(1277), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(611), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42774,7 +42780,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37862] = 12, + [37860] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42787,16 +42793,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1264), 1, + ACTIONS(1279), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(612), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42806,7 +42812,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37906] = 12, + [37904] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42819,16 +42825,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1266), 1, + ACTIONS(1281), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(613), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42838,7 +42844,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37950] = 12, + [37948] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42851,16 +42857,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1268), 1, + ACTIONS(1283), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(614), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42870,7 +42876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [37994] = 12, + [37992] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42883,16 +42889,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1270), 1, + ACTIONS(1285), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(615), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42902,7 +42908,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38038] = 12, + [38036] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42915,16 +42921,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1272), 1, + ACTIONS(1287), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(616), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42934,7 +42940,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38082] = 12, + [38080] = 14, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(1291), 1, + aux_sym_class_statement_token2, + ACTIONS(1293), 1, + aux_sym_implements_token1, + ACTIONS(1295), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(1297), 1, + aux_sym_abstract_token1, + ACTIONS(1299), 1, + aux_sym_final_token1, + ACTIONS(1301), 1, + aux_sym_serializable_token1, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(633), 1, + aux_sym_class_statement_repeat1, + STATE(617), 2, + sym_comment, + sym_include, + STATE(718), 5, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [38128] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -42947,16 +42987,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1274), 1, + ACTIONS(1303), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - STATE(617), 2, + STATE(618), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -42966,38 +43006,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38126] = 11, + [38172] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1276), 1, - anon_sym_RPAREN, - ACTIONS(1278), 1, + ACTIONS(685), 1, aux_sym_where_clause_token1, - ACTIONS(1284), 1, + ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1287), 1, + ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(1290), 1, + ACTIONS(693), 1, aux_sym__using_first_token1, - STATE(632), 1, + ACTIONS(1305), 1, + anon_sym_RPAREN, + STATE(610), 1, + aux_sym_can_find_expression_repeat2, + STATE(635), 1, sym__using_first, - STATE(618), 3, + STATE(619), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat2, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1281), 5, + ACTIONS(687), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38168] = 12, + [38216] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -43010,16 +43051,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(693), 1, aux_sym__using_first_token1, - ACTIONS(1293), 1, + ACTIONS(1307), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, - STATE(619), 2, + STATE(620), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -43029,69 +43070,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38212] = 14, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(1295), 1, - anon_sym_COLON, - ACTIONS(1297), 1, - aux_sym_class_statement_token2, - ACTIONS(1299), 1, - aux_sym_implements_token1, - ACTIONS(1301), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, - aux_sym_abstract_token1, - ACTIONS(1305), 1, - aux_sym_final_token1, - ACTIONS(1307), 1, - aux_sym_serializable_token1, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(644), 1, - aux_sym_class_statement_repeat1, - STATE(620), 2, - sym_comment, - sym_include, - STATE(727), 5, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, [38260] = 14, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__namedot, - ACTIONS(1297), 1, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, ACTIONS(1309), 1, anon_sym_COLON, - STATE(68), 1, + STATE(67), 1, aux_sym_qualified_name_repeat1, - STATE(634), 1, + STATE(637), 1, aux_sym_class_statement_repeat1, STATE(621), 2, sym_comment, sym_include, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, @@ -43112,14 +43119,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(1311), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(622), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -43144,14 +43151,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(1313), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(623), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -43176,14 +43183,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__using_first_token1, ACTIONS(1315), 1, anon_sym_RPAREN, - STATE(618), 1, + STATE(610), 1, aux_sym_can_find_expression_repeat2, - STATE(632), 1, + STATE(635), 1, sym__using_first, STATE(624), 2, sym_comment, sym_include, - STATE(682), 3, + STATE(680), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -43193,15 +43200,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38440] = 4, + [38440] = 13, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(1238), 1, + aux_sym_where_clause_token1, + ACTIONS(1240), 1, + aux_sym_sort_clause_token1, + ACTIONS(1242), 1, + aux_sym_sort_clause_token2, + ACTIONS(1317), 1, + anon_sym_COLON, + STATE(653), 1, + sym_where_clause, + STATE(655), 1, + aux_sym_for_statement_repeat1, + STATE(678), 1, + sym_query_tuning, + STATE(1078), 1, + sym_sort_clause, STATE(625), 2, sym_comment, sym_include, - ACTIONS(1317), 14, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [38485] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(626), 2, + sym_comment, + sym_include, + ACTIONS(1256), 14, sym__terminator, anon_sym_RPAREN, anon_sym_COLON, @@ -43216,30 +43255,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [38467] = 13, + [38512] = 13, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1248), 1, + ACTIONS(1238), 1, aux_sym_where_clause_token1, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, ACTIONS(1319), 1, anon_sym_COLON, - STATE(646), 1, - aux_sym_for_statement_repeat1, - STATE(658), 1, + STATE(652), 1, sym_where_clause, - STATE(680), 1, + STATE(656), 1, + aux_sym_for_statement_repeat1, + STATE(678), 1, sym_query_tuning, - STATE(1097), 1, + STATE(1107), 1, sym_sort_clause, - STATE(626), 2, + STATE(627), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -43248,30 +43287,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38512] = 13, + [38557] = 13, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1248), 1, + ACTIONS(1238), 1, aux_sym_where_clause_token1, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, ACTIONS(1321), 1, anon_sym_COLON, - STATE(648), 1, + STATE(647), 1, aux_sym_for_statement_repeat1, - STATE(652), 1, + STATE(649), 1, sym_where_clause, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1075), 1, + STATE(1009), 1, sym_sort_clause, - STATE(627), 2, + STATE(628), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -43280,12 +43319,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38557] = 4, + [38602] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(628), 2, + STATE(629), 2, sym_comment, sym_include, ACTIONS(1323), 14, @@ -43303,50 +43342,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [38584] = 13, + [38629] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(1248), 1, - aux_sym_where_clause_token1, - ACTIONS(1250), 1, - aux_sym_sort_clause_token1, - ACTIONS(1252), 1, - aux_sym_sort_clause_token2, - ACTIONS(1325), 1, - anon_sym_COLON, - STATE(653), 1, - aux_sym_for_statement_repeat1, - STATE(656), 1, - sym_where_clause, - STATE(680), 1, - sym_query_tuning, - STATE(1104), 1, - sym_sort_clause, - STATE(629), 2, + STATE(630), 2, sym_comment, sym_include, - ACTIONS(687), 5, + ACTIONS(1325), 14, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COLON, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [38629] = 4, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym__using_first_token1, + [38656] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(630), 2, + ACTIONS(1329), 1, + aux_sym__logical_operator_token1, + STATE(636), 1, + aux_sym_can_find_expression_repeat1, + STATE(662), 1, + sym__using_and, + STATE(631), 2, sym_comment, sym_include, - ACTIONS(1258), 14, - sym__terminator, + ACTIONS(1327), 10, anon_sym_RPAREN, - anon_sym_COLON, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, @@ -43354,55 +43388,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, aux_sym_of_token1, aux_sym__using_first_token1, - [38656] = 12, + [38688] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1297), 1, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(691), 1, + aux_sym_of_token1, + ACTIONS(1331), 1, + sym__terminator, + STATE(663), 1, + sym_of, + STATE(678), 1, + sym_query_tuning, + STATE(705), 1, + aux_sym_for_statement_repeat1, + STATE(706), 1, + sym_where_clause, + STATE(632), 2, + sym_comment, + sym_include, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [38730] = 12, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, - ACTIONS(1327), 1, + ACTIONS(1333), 1, anon_sym_COLON, - STATE(639), 1, + STATE(638), 1, aux_sym_class_statement_repeat1, - STATE(631), 2, + STATE(633), 2, sym_comment, sym_include, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [38698] = 7, + [38772] = 12, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(691), 1, + aux_sym_of_token1, + ACTIONS(1335), 1, + sym__terminator, + STATE(676), 1, + sym_of, + STATE(678), 1, + sym_query_tuning, + STATE(683), 1, + sym_where_clause, + STATE(688), 1, + aux_sym_for_statement_repeat1, + STATE(634), 2, + sym_comment, + sym_include, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [38814] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1331), 1, + ACTIONS(1329), 1, aux_sym__logical_operator_token1, - STATE(635), 1, + STATE(631), 1, aux_sym_can_find_expression_repeat1, - STATE(675), 1, + STATE(662), 1, sym__using_and, - STATE(632), 2, + STATE(635), 2, sym_comment, sym_include, - ACTIONS(1329), 10, + ACTIONS(1337), 10, anon_sym_RPAREN, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -43413,20 +43505,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [38730] = 6, + [38846] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1335), 1, + ACTIONS(1341), 1, aux_sym__logical_operator_token1, - STATE(675), 1, + STATE(662), 1, sym__using_and, - STATE(633), 3, + STATE(636), 3, sym_comment, sym_include, aux_sym_can_find_expression_repeat1, - ACTIONS(1333), 10, + ACTIONS(1339), 10, anon_sym_RPAREN, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -43437,181 +43529,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [38760] = 12, + [38876] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1297), 1, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, - ACTIONS(1338), 1, + ACTIONS(1344), 1, anon_sym_COLON, - STATE(639), 1, + STATE(638), 1, aux_sym_class_statement_repeat1, - STATE(634), 2, + STATE(637), 2, sym_comment, sym_include, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [38802] = 7, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1331), 1, - aux_sym__logical_operator_token1, - STATE(633), 1, - aux_sym_can_find_expression_repeat1, - STATE(675), 1, - sym__using_and, - STATE(635), 2, - sym_comment, - sym_include, - ACTIONS(1340), 10, - anon_sym_RPAREN, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [38834] = 12, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(691), 1, - aux_sym_of_token1, - ACTIONS(1342), 1, - sym__terminator, - STATE(668), 1, - sym_of, - STATE(680), 1, - sym_query_tuning, - STATE(685), 1, - sym_where_clause, - STATE(687), 1, - aux_sym_for_statement_repeat1, - STATE(636), 2, - sym_comment, - sym_include, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [38876] = 12, + [38918] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1295), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1297), 1, + ACTIONS(1348), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1351), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1354), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1357), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1360), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1363), 1, aux_sym_serializable_token1, - STATE(631), 1, - aux_sym_class_statement_repeat1, - STATE(637), 2, + STATE(638), 3, sym_comment, sym_include, - STATE(727), 5, + aux_sym_class_statement_repeat1, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [38918] = 12, + [38958] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(691), 1, - aux_sym_of_token1, - ACTIONS(1344), 1, - sym__terminator, - STATE(661), 1, - sym_of, - STATE(680), 1, - sym_query_tuning, - STATE(705), 1, - sym_where_clause, - STATE(708), 1, - aux_sym_for_statement_repeat1, - STATE(638), 2, + ACTIONS(1291), 1, + aux_sym_class_statement_token2, + ACTIONS(1293), 1, + aux_sym_implements_token1, + ACTIONS(1295), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(1297), 1, + aux_sym_abstract_token1, + ACTIONS(1299), 1, + aux_sym_final_token1, + ACTIONS(1301), 1, + aux_sym_serializable_token1, + ACTIONS(1366), 1, + anon_sym_COLON, + STATE(638), 1, + aux_sym_class_statement_repeat1, + STATE(639), 2, sym_comment, sym_include, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [38960] = 11, + STATE(718), 5, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [39000] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1346), 1, + ACTIONS(1289), 1, anon_sym_COLON, - ACTIONS(1348), 1, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1351), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1354), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1357), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1360), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1363), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, - STATE(639), 3, + STATE(643), 1, + aux_sym_class_statement_repeat1, + STATE(640), 2, sym_comment, sym_include, - aux_sym_class_statement_repeat1, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [39000] = 12, + [39042] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -43622,17 +43659,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(1366), 1, + ACTIONS(1368), 1, sym__terminator, - STATE(662), 1, + STATE(672), 1, sym_of, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(688), 1, + STATE(693), 1, aux_sym_for_statement_repeat1, - STATE(699), 1, + STATE(694), 1, sym_where_clause, - STATE(640), 2, + STATE(641), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -43641,67 +43678,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39042] = 12, + [39084] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1297), 1, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, ACTIONS(1309), 1, anon_sym_COLON, - STATE(642), 1, + STATE(639), 1, aux_sym_class_statement_repeat1, - STATE(641), 2, + STATE(642), 2, sym_comment, sym_include, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [39084] = 12, + [39126] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1297), 1, + ACTIONS(1291), 1, aux_sym_class_statement_token2, - ACTIONS(1299), 1, + ACTIONS(1293), 1, aux_sym_implements_token1, - ACTIONS(1301), 1, + ACTIONS(1295), 1, aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, + ACTIONS(1297), 1, aux_sym_abstract_token1, - ACTIONS(1305), 1, + ACTIONS(1299), 1, aux_sym_final_token1, - ACTIONS(1307), 1, + ACTIONS(1301), 1, aux_sym_serializable_token1, - ACTIONS(1368), 1, + ACTIONS(1370), 1, anon_sym_COLON, - STATE(639), 1, + STATE(638), 1, aux_sym_class_statement_repeat1, - STATE(642), 2, + STATE(643), 2, sym_comment, sym_include, - STATE(727), 5, + STATE(718), 5, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [39126] = 12, + [39168] = 12, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -43712,17 +43749,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, ACTIONS(691), 1, aux_sym_of_token1, - ACTIONS(1370), 1, + ACTIONS(1372), 1, sym__terminator, STATE(674), 1, sym_of, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(683), 1, - aux_sym_for_statement_repeat1, - STATE(704), 1, + STATE(689), 1, sym_where_clause, - STATE(643), 2, + STATE(697), 1, + aux_sym_for_statement_repeat1, + STATE(644), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -43731,36 +43768,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39168] = 12, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1297), 1, - aux_sym_class_statement_token2, - ACTIONS(1299), 1, - aux_sym_implements_token1, - ACTIONS(1301), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(1303), 1, - aux_sym_abstract_token1, - ACTIONS(1305), 1, - aux_sym_final_token1, - ACTIONS(1307), 1, - aux_sym_serializable_token1, - ACTIONS(1372), 1, - anon_sym_COLON, - STATE(639), 1, - aux_sym_class_statement_repeat1, - STATE(644), 2, - sym_comment, - sym_include, - STATE(727), 5, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, [39210] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, @@ -43768,17 +43775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1374), 1, + ACTIONS(1319), 1, anon_sym_COLON, - STATE(655), 1, + STATE(656), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1109), 1, + STATE(1107), 1, sym_sort_clause, STATE(645), 2, sym_comment, @@ -43789,52 +43796,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39249] = 11, + [39249] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(689), 1, + ACTIONS(1379), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, - aux_sym_sort_clause_token1, - ACTIONS(1252), 1, - aux_sym_sort_clause_token2, - ACTIONS(1376), 1, - anon_sym_COLON, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1112), 1, - sym_sort_clause, - STATE(646), 2, + STATE(646), 3, sym_comment, sym_include, - ACTIONS(687), 5, + aux_sym_for_statement_repeat1, + ACTIONS(1374), 4, + sym__terminator, + anon_sym_COLON, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(1376), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39288] = 11, + [39280] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1319), 1, + ACTIONS(1382), 1, anon_sym_COLON, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1097), 1, + STATE(984), 1, sym_sort_clause, STATE(647), 2, sym_comment, @@ -43845,24 +43848,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39327] = 11, + [39319] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1378), 1, + ACTIONS(1384), 1, anon_sym_COLON, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1082), 1, + STATE(1112), 1, sym_sort_clause, STATE(648), 2, sym_comment, @@ -43873,24 +43876,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39366] = 11, + [39358] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1380), 1, + ACTIONS(1382), 1, anon_sym_COLON, - STATE(655), 1, + STATE(657), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1146), 1, + STATE(984), 1, sym_sort_clause, STATE(649), 2, sym_comment, @@ -43901,24 +43904,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39405] = 11, + [39397] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1382), 1, + ACTIONS(1321), 1, anon_sym_COLON, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1088), 1, + STATE(1009), 1, sym_sort_clause, STATE(650), 2, sym_comment, @@ -43929,24 +43932,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39444] = 11, + [39436] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1325), 1, + ACTIONS(1317), 1, anon_sym_COLON, - STATE(653), 1, + STATE(655), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1104), 1, + STATE(1078), 1, sym_sort_clause, STATE(651), 2, sym_comment, @@ -43957,24 +43960,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39483] = 11, + [39475] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1378), 1, + ACTIONS(1386), 1, anon_sym_COLON, - STATE(650), 1, + STATE(648), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1082), 1, + STATE(1110), 1, sym_sort_clause, STATE(652), 2, sym_comment, @@ -43985,24 +43988,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39522] = 11, + [39514] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1384), 1, + ACTIONS(1388), 1, anon_sym_COLON, - STATE(655), 1, + STATE(654), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1107), 1, + STATE(1085), 1, sym_sort_clause, STATE(653), 2, sym_comment, @@ -44013,24 +44016,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39561] = 11, + [39553] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1319), 1, + ACTIONS(1390), 1, anon_sym_COLON, STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1097), 1, + STATE(1091), 1, sym_sort_clause, STATE(654), 2, sym_comment, @@ -44041,25 +44044,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39600] = 7, + [39592] = 11, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1391), 1, + ACTIONS(689), 1, aux_sym_query_tuning_token6, - STATE(680), 1, + ACTIONS(1240), 1, + aux_sym_sort_clause_token1, + ACTIONS(1242), 1, + aux_sym_sort_clause_token2, + ACTIONS(1388), 1, + anon_sym_COLON, + STATE(646), 1, + aux_sym_for_statement_repeat1, + STATE(678), 1, sym_query_tuning, - STATE(655), 3, + STATE(1085), 1, + sym_sort_clause, + STATE(655), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - ACTIONS(1386), 4, - sym__terminator, - anon_sym_COLON, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(1388), 5, + ACTIONS(687), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, @@ -44072,17 +44079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1384), 1, + ACTIONS(1386), 1, anon_sym_COLON, - STATE(645), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1107), 1, + STATE(1110), 1, sym_sort_clause, STATE(656), 2, sym_comment, @@ -44100,17 +44107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1321), 1, + ACTIONS(1392), 1, anon_sym_COLON, - STATE(648), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1075), 1, + STATE(968), 1, sym_sort_clause, STATE(657), 2, sym_comment, @@ -44128,17 +44135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1376), 1, + ACTIONS(1321), 1, anon_sym_COLON, - STATE(649), 1, + STATE(647), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1112), 1, + STATE(1009), 1, sym_sort_clause, STATE(658), 2, sym_comment, @@ -44156,17 +44163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1325), 1, + ACTIONS(1319), 1, anon_sym_COLON, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1104), 1, + STATE(1107), 1, sym_sort_clause, STATE(659), 2, sym_comment, @@ -44184,17 +44191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1250), 1, + ACTIONS(1240), 1, aux_sym_sort_clause_token1, - ACTIONS(1252), 1, + ACTIONS(1242), 1, aux_sym_sort_clause_token2, - ACTIONS(1321), 1, + ACTIONS(1317), 1, anon_sym_COLON, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(1075), 1, + STATE(1078), 1, sym_sort_clause, STATE(660), 2, sym_comment, @@ -44205,84 +44212,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39826] = 10, + [39826] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(1394), 1, - sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(686), 1, - aux_sym_for_statement_repeat1, - STATE(702), 1, - sym_where_clause, STATE(661), 2, sym_comment, sym_include, - ACTIONS(687), 5, + ACTIONS(1394), 11, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39862] = 10, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [39850] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(1396), 1, - sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(684), 1, - aux_sym_for_statement_repeat1, - STATE(701), 1, - sym_where_clause, STATE(662), 2, sym_comment, sym_include, - ACTIONS(687), 5, + ACTIONS(1396), 11, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [39898] = 4, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [39874] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(1398), 1, + sym__terminator, + STATE(678), 1, + sym_query_tuning, + STATE(699), 1, + aux_sym_for_statement_repeat1, + STATE(704), 1, + sym_where_clause, STATE(663), 2, sym_comment, sym_include, - ACTIONS(1398), 11, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym_where_clause_token1, + ACTIONS(687), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [39922] = 5, + [39910] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(186), 1, + STATE(180), 1, sym_accumulate_aggregate, STATE(664), 2, sym_comment, @@ -44298,17 +44299,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [39948] = 5, + [39936] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(144), 1, + STATE(853), 1, sym_accumulate_aggregate, STATE(665), 2, sym_comment, sym_include, - ACTIONS(1400), 10, + ACTIONS(1402), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -44319,17 +44320,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [39974] = 5, + [39962] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(167), 1, sym_accumulate_aggregate, STATE(666), 2, sym_comment, sym_include, - ACTIONS(1402), 10, + ACTIONS(1400), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -44340,12 +44341,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [40000] = 5, + [39988] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(860), 1, + STATE(962), 1, sym_accumulate_aggregate, STATE(667), 2, sym_comment, @@ -44361,60 +44362,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [40026] = 10, + [40014] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(685), 1, - aux_sym_where_clause_token1, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, - ACTIONS(1404), 1, - sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(695), 1, - aux_sym_for_statement_repeat1, - STATE(697), 1, - sym_where_clause, + STATE(846), 1, + sym_accumulate_aggregate, STATE(668), 2, sym_comment, sym_include, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [40062] = 4, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - STATE(669), 2, - sym_comment, - sym_include, - ACTIONS(1406), 11, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [40086] = 5, + ACTIONS(1402), 10, + aux_sym_accumulate_aggregate_token1, + aux_sym_accumulate_aggregate_token2, + aux_sym_accumulate_aggregate_token3, + aux_sym_accumulate_aggregate_token4, + aux_sym_accumulate_aggregate_token5, + aux_sym_accumulate_aggregate_token6, + aux_sym_accumulate_aggregate_token7, + aux_sym_accumulate_aggregate_token8, + aux_sym_accumulate_aggregate_token9, + aux_sym_accumulate_aggregate_token10, + [40040] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(170), 1, + STATE(122), 1, sym_accumulate_aggregate, - STATE(670), 2, + STATE(669), 2, sym_comment, sym_include, ACTIONS(1400), 10, @@ -44428,7 +44404,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [40112] = 5, + [40066] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(670), 2, + sym_comment, + sym_include, + ACTIONS(1404), 11, + anon_sym_RPAREN, + aux_sym__logical_operator_token1, + aux_sym_where_clause_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [40090] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -44449,31 +44445,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [40138] = 8, + [40116] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(1408), 1, - anon_sym_COMMA, - STATE(68), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(1406), 1, + sym__terminator, + STATE(678), 1, + sym_query_tuning, + STATE(692), 1, + aux_sym_for_statement_repeat1, STATE(698), 1, - aux_sym_implements_repeat1, - STATE(672), 2, - sym_comment, - sym_include, - ACTIONS(1410), 7, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, - [40170] = 4, + sym_where_clause, + STATE(672), 2, + sym_comment, + sym_include, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + [40152] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -44481,7 +44479,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(673), 2, sym_comment, sym_include, - ACTIONS(1412), 11, + ACTIONS(1408), 11, anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym_where_clause_token1, @@ -44493,7 +44491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [40194] = 10, + [40176] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -44502,13 +44500,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1414), 1, + ACTIONS(1410), 1, sym__terminator, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(691), 1, + STATE(701), 1, aux_sym_for_statement_repeat1, - STATE(693), 1, + STATE(702), 1, sym_where_clause, STATE(674), 2, sym_comment, @@ -44519,7 +44517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40230] = 4, + [40212] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -44527,7 +44525,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(675), 2, sym_comment, sym_include, - ACTIONS(1416), 11, + ACTIONS(1412), 11, anon_sym_RPAREN, aux_sym__logical_operator_token1, aux_sym_where_clause_token1, @@ -44539,98 +44537,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, aux_sym_of_token1, aux_sym__using_first_token1, - [40254] = 4, + [40236] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(685), 1, + aux_sym_where_clause_token1, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(1414), 1, + sym__terminator, + STATE(678), 1, + sym_query_tuning, + STATE(707), 1, + aux_sym_for_statement_repeat1, + STATE(708), 1, + sym_where_clause, STATE(676), 2, sym_comment, sym_include, - ACTIONS(1418), 11, - anon_sym_RPAREN, - aux_sym__logical_operator_token1, - aux_sym_where_clause_token1, + ACTIONS(687), 5, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, - [40278] = 5, + [40272] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(810), 1, - sym_accumulate_aggregate, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(1416), 1, + anon_sym_COMMA, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(690), 1, + aux_sym_implements_repeat1, STATE(677), 2, sym_comment, sym_include, - ACTIONS(1402), 10, - aux_sym_accumulate_aggregate_token1, - aux_sym_accumulate_aggregate_token2, - aux_sym_accumulate_aggregate_token3, - aux_sym_accumulate_aggregate_token4, - aux_sym_accumulate_aggregate_token5, - aux_sym_accumulate_aggregate_token6, - aux_sym_accumulate_aggregate_token7, - aux_sym_accumulate_aggregate_token8, - aux_sym_accumulate_aggregate_token9, - aux_sym_accumulate_aggregate_token10, - [40304] = 10, - ACTIONS(3), 1, + ACTIONS(1418), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [40304] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - sym_identifier, - ACTIONS(1422), 1, - aux_sym_if_do_statement_token3, - ACTIONS(1424), 1, - aux_sym_procedure_parameter_definition_token3, - STATE(376), 1, - sym__terminated_statement, - STATE(1010), 1, - sym_assignment, - STATE(1011), 1, - sym_function_call, STATE(678), 2, sym_comment, sym_include, - STATE(384), 4, - sym_variable_assignment, - sym_function_call_statement, - sym_return_statement, - sym_abl_statement, - [40339] = 10, + ACTIONS(1420), 10, + sym__terminator, + anon_sym_COLON, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, + aux_sym_query_tuning_token6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [40327] = 10, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1422), 1, sym_identifier, - ACTIONS(1428), 1, + ACTIONS(1424), 1, aux_sym_if_do_statement_token3, - ACTIONS(1430), 1, + ACTIONS(1426), 1, aux_sym_procedure_parameter_definition_token3, STATE(377), 1, sym__terminated_statement, - STATE(970), 1, + STATE(1013), 1, sym_assignment, - STATE(971), 1, + STATE(1014), 1, sym_function_call, STATE(679), 2, sym_comment, sym_include, - STATE(395), 4, + STATE(405), 4, sym_variable_assignment, sym_function_call_statement, sym_return_statement, sym_abl_statement, - [40374] = 4, + [40362] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -44638,30 +44639,30 @@ static const uint16_t ts_small_parse_table[] = { STATE(680), 2, sym_comment, sym_include, - ACTIONS(1432), 10, - sym__terminator, - anon_sym_COLON, + ACTIONS(1428), 10, + anon_sym_RPAREN, + aux_sym_where_clause_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_query_tuning_token6, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [40397] = 6, + aux_sym_of_token1, + aux_sym__using_first_token1, + [40385] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__namedot, - STATE(68), 1, + STATE(67), 1, aux_sym_qualified_name_repeat1, STATE(681), 2, sym_comment, sym_include, - ACTIONS(1434), 8, + ACTIONS(1430), 8, anon_sym_COMMA, anon_sym_COLON, aux_sym_class_statement_token2, @@ -44670,25 +44671,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [40424] = 4, - ACTIONS(311), 1, + [40412] = 10, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, + aux_sym_if_do_statement_token3, + ACTIONS(1436), 1, + aux_sym_procedure_parameter_definition_token3, + STATE(376), 1, + sym__terminated_statement, + STATE(979), 1, + sym_assignment, + STATE(980), 1, + sym_function_call, STATE(682), 2, sym_comment, sym_include, - ACTIONS(1436), 10, - anon_sym_RPAREN, - aux_sym_where_clause_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, - aux_sym_of_token1, - aux_sym__using_first_token1, + STATE(391), 4, + sym_variable_assignment, + sym_function_call_statement, + sym_return_statement, + sym_abl_statement, [40447] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, @@ -44698,10 +44705,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token6, ACTIONS(1414), 1, sym__terminator, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, + STATE(707), 1, + aux_sym_for_statement_repeat1, STATE(683), 2, sym_comment, sym_include, @@ -44711,42 +44718,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40477] = 8, + [40477] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + sym_identifier, + ACTIONS(123), 1, + aux_sym_procedure_parameter_definition_token3, + STATE(574), 1, + sym__terminated_statement, + STATE(1045), 1, + sym_assignment, + STATE(1131), 1, + sym_function_call, + STATE(684), 2, + sym_comment, + sym_include, + STATE(418), 4, + sym_variable_assignment, + sym_function_call_statement, + sym_return_statement, + sym_abl_statement, + [40509] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(689), 1, - aux_sym_query_tuning_token6, ACTIONS(1438), 1, - sym__terminator, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, - sym_query_tuning, - STATE(684), 2, + anon_sym_COMMA, + STATE(685), 3, sym_comment, sym_include, - ACTIONS(687), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - aux_sym_query_tuning_token5, - [40507] = 8, + aux_sym_implements_repeat1, + ACTIONS(1430), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [40533] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1404), 1, + ACTIONS(1441), 1, sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(695), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(685), 2, + STATE(678), 1, + sym_query_tuning, + STATE(686), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44755,20 +44782,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40537] = 8, + [40563] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(1416), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_implements_repeat1, + STATE(687), 2, + sym_comment, + sym_include, + ACTIONS(1418), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [40589] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1440), 1, + ACTIONS(1414), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(686), 2, + STATE(688), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44777,20 +44824,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40567] = 8, + [40619] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1404), 1, + ACTIONS(1410), 1, sym__terminator, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(687), 2, + STATE(701), 1, + aux_sym_for_statement_repeat1, + STATE(689), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44799,20 +44846,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40597] = 8, + [40649] = 6, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(1416), 1, + anon_sym_COMMA, + STATE(685), 1, + aux_sym_implements_repeat1, + STATE(690), 2, + sym_comment, + sym_include, + ACTIONS(1443), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [40675] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1396), 1, + ACTIONS(1445), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(688), 2, + STATE(691), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44821,43 +44888,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40627] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - sym_identifier, - ACTIONS(123), 1, - aux_sym_procedure_parameter_definition_token3, - STATE(529), 1, - sym__terminated_statement, - STATE(1050), 1, - sym_function_call, - STATE(1051), 1, - sym_assignment, - STATE(689), 2, - sym_comment, - sym_include, - STATE(426), 4, - sym_variable_assignment, - sym_function_call_statement, - sym_return_statement, - sym_abl_statement, - [40659] = 8, + [40705] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1442), 1, + ACTIONS(1447), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(690), 2, + STATE(692), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44866,20 +44910,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40689] = 8, + [40735] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1444), 1, + ACTIONS(1406), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(691), 2, + STATE(693), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44888,40 +44932,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40719] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(692), 2, - sym_comment, - sym_include, - ACTIONS(1446), 7, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, - [40745] = 8, + [40765] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1444), 1, + ACTIONS(1406), 1, sym__terminator, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(703), 1, + STATE(692), 1, aux_sym_for_statement_repeat1, - STATE(693), 2, + STATE(694), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44930,19 +44954,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40775] = 6, + [40795] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1408), 1, - anon_sym_COMMA, - STATE(698), 1, - aux_sym_implements_repeat1, - STATE(694), 2, + ACTIONS(315), 1, + sym__namedot, + STATE(67), 1, + aux_sym_qualified_name_repeat1, + STATE(695), 2, sym_comment, sym_include, - ACTIONS(1410), 7, + ACTIONS(1449), 7, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -44950,20 +44974,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [40801] = 8, + [40821] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1448), 1, + ACTIONS(1451), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(695), 2, + STATE(696), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -44972,42 +44996,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40831] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(29), 1, - aux_sym_procedure_parameter_definition_token3, - STATE(418), 1, - sym__terminated_statement, - STATE(1070), 1, - sym_function_call, - STATE(1080), 1, - sym_assignment, - STATE(696), 2, - sym_comment, - sym_include, - STATE(582), 4, - sym_variable_assignment, - sym_function_call_statement, - sym_return_statement, - sym_abl_statement, - [40863] = 8, + [40851] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1448), 1, + ACTIONS(1410), 1, sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(706), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, + STATE(678), 1, + sym_query_tuning, STATE(697), 2, sym_comment, sym_include, @@ -45017,40 +45018,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40893] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1408), 1, - anon_sym_COMMA, - STATE(707), 1, - aux_sym_implements_repeat1, - STATE(698), 2, - sym_comment, - sym_include, - ACTIONS(1450), 7, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, - [40919] = 8, + [40881] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1396), 1, + ACTIONS(1447), 1, sym__terminator, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(684), 1, + STATE(703), 1, aux_sym_for_statement_repeat1, - STATE(699), 2, + STATE(698), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -45059,20 +45040,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40949] = 8, + [40911] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1452), 1, + ACTIONS(1453), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(700), 2, + STATE(699), 2, sym_comment, sym_include, ACTIONS(687), 5, @@ -45081,19 +45062,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [40979] = 8, + [40941] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(29), 1, + aux_sym_procedure_parameter_definition_token3, + STATE(421), 1, + sym__terminated_statement, + STATE(1156), 1, + sym_function_call, + STATE(1157), 1, + sym_assignment, + STATE(700), 2, + sym_comment, + sym_include, + STATE(528), 4, + sym_variable_assignment, + sym_function_call_statement, + sym_return_statement, + sym_abl_statement, + [40973] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1438), 1, + ACTIONS(1455), 1, sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(690), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, + STATE(678), 1, + sym_query_tuning, STATE(701), 2, sym_comment, sym_include, @@ -45103,18 +45107,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41009] = 8, + [41003] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1440), 1, + ACTIONS(1455), 1, sym__terminator, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, - STATE(700), 1, + STATE(696), 1, aux_sym_for_statement_repeat1, STATE(702), 2, sym_comment, @@ -45125,18 +45129,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41039] = 8, + [41033] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1454), 1, + ACTIONS(1457), 1, sym__terminator, - STATE(655), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, STATE(703), 2, sym_comment, @@ -45147,16 +45151,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41069] = 8, + [41063] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1414), 1, + ACTIONS(1453), 1, sym__terminator, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, STATE(691), 1, aux_sym_for_statement_repeat1, @@ -45169,19 +45173,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41099] = 8, + [41093] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1394), 1, + ACTIONS(1398), 1, sym__terminator, - STATE(680), 1, - sym_query_tuning, - STATE(686), 1, + STATE(646), 1, aux_sym_for_statement_repeat1, + STATE(678), 1, + sym_query_tuning, STATE(705), 2, sym_comment, sym_include, @@ -45191,19 +45195,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41129] = 8, + [41123] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1456), 1, + ACTIONS(1398), 1, sym__terminator, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, + STATE(699), 1, + aux_sym_for_statement_repeat1, STATE(706), 2, sym_comment, sym_include, @@ -45213,25 +45217,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41159] = 5, + [41153] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1458), 1, - anon_sym_COMMA, - STATE(707), 3, + ACTIONS(689), 1, + aux_sym_query_tuning_token6, + ACTIONS(1459), 1, + sym__terminator, + STATE(646), 1, + aux_sym_for_statement_repeat1, + STATE(678), 1, + sym_query_tuning, + STATE(707), 2, sym_comment, sym_include, - aux_sym_implements_repeat1, - ACTIONS(1434), 7, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, + ACTIONS(687), 5, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + aux_sym_query_tuning_token5, [41183] = 8, ACTIONS(311), 1, anon_sym_SLASH_STAR, @@ -45239,12 +45246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(689), 1, aux_sym_query_tuning_token6, - ACTIONS(1394), 1, + ACTIONS(1459), 1, sym__terminator, - STATE(655), 1, - aux_sym_for_statement_repeat1, - STATE(680), 1, + STATE(678), 1, sym_query_tuning, + STATE(686), 1, + aux_sym_for_statement_repeat1, STATE(708), 2, sym_comment, sym_include, @@ -45254,208 +45261,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - [41213] = 4, + [41213] = 9, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(709), 2, - sym_comment, - sym_include, - ACTIONS(1434), 8, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, - [41234] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(432), 1, - anon_sym_LPAREN, ACTIONS(1461), 1, - sym_identifier, - ACTIONS(1463), 1, - sym_number_literal, - STATE(231), 1, - sym__unary_minus_expressions, - STATE(710), 2, - sym_comment, - sym_include, - STATE(224), 4, - sym_qualified_name, - sym_parenthesized_expression, - sym_function_call, - sym_object_access, - [41263] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(1465), 1, - sym_identifier, - ACTIONS(1467), 1, - sym_number_literal, - STATE(239), 1, - sym__unary_minus_expressions, - STATE(711), 2, - sym_comment, - sym_include, - STATE(248), 4, - sym_qualified_name, - sym_parenthesized_expression, - sym_function_call, - sym_object_access, - [41292] = 9, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1469), 1, - aux_sym_input_expression_token1, - ACTIONS(1471), 1, - aux_sym_variable_definition_token3, - ACTIONS(1473), 1, - aux_sym_variable_definition_token4, - ACTIONS(1475), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1479), 1, - aux_sym_stream_definition_token1, - STATE(712), 2, - sym_comment, - sym_include, - ACTIONS(1477), 3, - aux_sym_procedure_parameter_definition_token1, - aux_sym_procedure_parameter_definition_token2, - aux_sym_procedure_parameter_definition_token3, - [41323] = 9, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1481), 1, aux_sym_input_expression_token1, - ACTIONS(1483), 1, + ACTIONS(1463), 1, aux_sym_variable_definition_token3, - ACTIONS(1485), 1, + ACTIONS(1465), 1, aux_sym_variable_definition_token4, - ACTIONS(1487), 1, + ACTIONS(1467), 1, aux_sym_buffer_definition_token1, - ACTIONS(1491), 1, + ACTIONS(1471), 1, aux_sym_stream_definition_token1, - STATE(713), 2, + STATE(709), 2, sym_comment, sym_include, - ACTIONS(1489), 3, + ACTIONS(1469), 3, aux_sym_procedure_parameter_definition_token1, aux_sym_procedure_parameter_definition_token2, aux_sym_procedure_parameter_definition_token3, - [41354] = 11, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1493), 1, - aux_sym__block_terminator_token1, - ACTIONS(1495), 1, - aux_sym_case_when_branch_token1, - ACTIONS(1497), 1, - aux_sym_case_otherwise_branch_token1, - STATE(579), 1, - sym__case_terminator, - STATE(580), 1, - sym__block_terminator, - STATE(746), 1, - aux_sym_case_statement_repeat1, - STATE(807), 1, - sym_case_when_branch, - STATE(811), 1, - sym_case_otherwise_branch, - STATE(714), 2, - sym_comment, - sym_include, - [41389] = 11, - ACTIONS(311), 1, + [41244] = 8, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1495), 1, - aux_sym_case_when_branch_token1, - ACTIONS(1497), 1, - aux_sym_case_otherwise_branch_token1, - ACTIONS(1499), 1, - aux_sym__block_terminator_token1, - STATE(551), 1, - sym__case_terminator, - STATE(552), 1, - sym__block_terminator, - STATE(746), 1, - aux_sym_case_statement_repeat1, - STATE(807), 1, - sym_case_when_branch, - STATE(831), 1, - sym_case_otherwise_branch, - STATE(715), 2, + ACTIONS(434), 1, + anon_sym_LPAREN, + ACTIONS(1473), 1, + sym_identifier, + ACTIONS(1475), 1, + sym_number_literal, + STATE(231), 1, + sym__unary_minus_expressions, + STATE(710), 2, sym_comment, sym_include, - [41424] = 8, + STATE(232), 4, + sym_qualified_name, + sym_parenthesized_expression, + sym_function_call, + sym_object_access, + [41273] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(556), 1, + ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(1501), 1, + ACTIONS(1477), 1, sym_identifier, - ACTIONS(1503), 1, + ACTIONS(1479), 1, sym_number_literal, - STATE(375), 1, + STATE(246), 1, sym__unary_minus_expressions, - STATE(716), 2, + STATE(711), 2, sym_comment, sym_include, - STATE(374), 4, + STATE(247), 4, sym_qualified_name, sym_parenthesized_expression, sym_function_call, sym_object_access, - [41453] = 8, + [41302] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_LPAREN, - ACTIONS(1467), 1, + ACTIONS(1479), 1, sym_number_literal, - ACTIONS(1505), 1, + ACTIONS(1481), 1, sym_identifier, - STATE(239), 1, + STATE(246), 1, sym__unary_minus_expressions, - STATE(717), 2, + STATE(712), 2, sym_comment, sym_include, - STATE(248), 4, + STATE(247), 4, + sym_qualified_name, + sym_parenthesized_expression, + sym_function_call, + sym_object_access, + [41331] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(1483), 1, + sym_identifier, + ACTIONS(1485), 1, + sym_number_literal, + STATE(351), 1, + sym__unary_minus_expressions, + STATE(713), 2, + sym_comment, + sym_include, + STATE(354), 4, sym_qualified_name, sym_parenthesized_expression, sym_function_call, sym_object_access, - [41482] = 4, + [41360] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(718), 2, + STATE(714), 2, sym_comment, sym_include, - ACTIONS(1507), 7, + ACTIONS(1430), 8, + anon_sym_COMMA, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -45463,15 +45384,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [41502] = 4, + [41381] = 9, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(719), 2, + ACTIONS(1487), 1, + aux_sym_input_expression_token1, + ACTIONS(1489), 1, + aux_sym_variable_definition_token3, + ACTIONS(1491), 1, + aux_sym_variable_definition_token4, + ACTIONS(1493), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1497), 1, + aux_sym_stream_definition_token1, + STATE(715), 2, + sym_comment, + sym_include, + ACTIONS(1495), 3, + aux_sym_procedure_parameter_definition_token1, + aux_sym_procedure_parameter_definition_token2, + aux_sym_procedure_parameter_definition_token3, + [41412] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(716), 2, sym_comment, sym_include, - ACTIONS(1509), 7, + ACTIONS(1499), 7, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -45479,7 +45422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [41522] = 8, + [41432] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -45488,18 +45431,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(1511), 1, + ACTIONS(1501), 1, sym_identifier, STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(709), 2, + STATE(717), 2, + sym_comment, + sym_include, + STATE(727), 2, sym_qualified_name, sym__string_literal, - STATE(720), 2, + [41460] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(718), 2, sym_comment, sym_include, - [41550] = 8, + ACTIONS(1503), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [41480] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -45508,18 +45467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(1513), 1, + ACTIONS(1505), 1, sym_identifier, STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(641), 2, + STATE(642), 2, sym_qualified_name, sym__string_literal, - STATE(721), 2, + STATE(719), 2, sym_comment, sym_include, - [41578] = 8, + [41508] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -45528,83 +45487,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(1515), 1, + ACTIONS(1507), 1, sym_identifier, STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(637), 2, + STATE(714), 2, sym_qualified_name, sym__string_literal, - STATE(722), 2, + STATE(720), 2, sym_comment, sym_include, - [41606] = 10, + [41536] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1519), 1, - aux_sym_include_argument_token1, - ACTIONS(1521), 1, - anon_sym_RBRACE, - ACTIONS(1523), 1, + ACTIONS(69), 1, anon_sym_DQUOTE, - STATE(725), 1, - aux_sym_include_repeat1, - STATE(764), 1, - sym_include_argument, - STATE(765), 1, + ACTIONS(71), 1, + anon_sym_SQUOTE, + ACTIONS(1509), 1, + sym_identifier, + STATE(71), 2, sym_double_quoted_string, - STATE(723), 2, + sym_single_quoted_string, + STATE(640), 2, + sym_qualified_name, + sym__string_literal, + STATE(721), 2, sym_comment, sym_include, - [41638] = 10, - ACTIONS(3), 1, + [41564] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1519), 1, - aux_sym_include_argument_token1, - ACTIONS(1523), 1, - anon_sym_DQUOTE, - ACTIONS(1525), 1, - anon_sym_RBRACE, - STATE(723), 1, - aux_sym_include_repeat1, - STATE(764), 1, - sym_include_argument, - STATE(765), 1, - sym_double_quoted_string, - STATE(724), 2, + STATE(722), 2, sym_comment, sym_include, - [41670] = 9, + ACTIONS(1511), 7, + anon_sym_COLON, + aux_sym_class_statement_token2, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_abstract_token1, + aux_sym_final_token1, + aux_sym_serializable_token1, + [41584] = 10, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1527), 1, + ACTIONS(1513), 1, sym_identifier, - ACTIONS(1530), 1, + ACTIONS(1515), 1, aux_sym_include_argument_token1, - ACTIONS(1533), 1, + ACTIONS(1517), 1, anon_sym_RBRACE, - ACTIONS(1535), 1, + ACTIONS(1519), 1, anon_sym_DQUOTE, - STATE(764), 1, + STATE(730), 1, + aux_sym_include_repeat1, + STATE(757), 1, sym_include_argument, - STATE(765), 1, + STATE(778), 1, sym_double_quoted_string, - STATE(725), 3, + STATE(723), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [41700] = 8, + [41616] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -45613,26 +45565,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(71), 1, anon_sym_SQUOTE, - ACTIONS(1538), 1, + ACTIONS(1521), 1, sym_identifier, STATE(71), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(726), 2, - sym_comment, - sym_include, - STATE(728), 2, + STATE(687), 2, sym_qualified_name, sym__string_literal, - [41728] = 4, + STATE(724), 2, + sym_comment, + sym_include, + [41644] = 10, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(727), 2, + ACTIONS(1523), 1, + aux_sym__block_terminator_token1, + ACTIONS(1525), 1, + aux_sym_case_when_branch_token1, + STATE(484), 1, + sym__case_terminator, + STATE(491), 1, + sym__block_terminator, + STATE(734), 1, + aux_sym_case_body_repeat1, + STATE(811), 1, + sym_case_when_branch, + STATE(855), 1, + sym_case_body, + STATE(725), 2, sym_comment, sym_include, - ACTIONS(1540), 7, + [41676] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(726), 2, + sym_comment, + sym_include, + ACTIONS(1527), 7, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -45640,15 +45614,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [41748] = 4, + [41696] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(728), 2, + STATE(727), 2, sym_comment, sym_include, - ACTIONS(1446), 7, + ACTIONS(1449), 7, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -45656,35 +45630,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [41768] = 8, - ACTIONS(3), 1, + [41716] = 10, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(1542), 1, - sym_identifier, - STATE(71), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(694), 2, - sym_qualified_name, - sym__string_literal, - STATE(729), 2, + ACTIONS(1525), 1, + aux_sym_case_when_branch_token1, + ACTIONS(1529), 1, + aux_sym__block_terminator_token1, + STATE(441), 1, + sym__block_terminator, + STATE(444), 1, + sym__case_terminator, + STATE(734), 1, + aux_sym_case_body_repeat1, + STATE(811), 1, + sym_case_when_branch, + STATE(822), 1, + sym_case_body, + STATE(728), 2, sym_comment, sym_include, - [41796] = 4, + [41748] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(730), 2, + STATE(729), 2, sym_comment, sym_include, - ACTIONS(1544), 7, + ACTIONS(1531), 7, anon_sym_COLON, aux_sym_class_statement_token2, aux_sym_implements_token1, @@ -45692,997 +45668,1031 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_token1, aux_sym_final_token1, aux_sym_serializable_token1, - [41816] = 4, - ACTIONS(311), 1, + [41768] = 9, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - STATE(731), 2, + ACTIONS(1533), 1, + sym_identifier, + ACTIONS(1536), 1, + aux_sym_include_argument_token1, + ACTIONS(1539), 1, + anon_sym_RBRACE, + ACTIONS(1541), 1, + anon_sym_DQUOTE, + STATE(757), 1, + sym_include_argument, + STATE(778), 1, + sym_double_quoted_string, + STATE(730), 3, sym_comment, sym_include, - ACTIONS(1546), 7, - anon_sym_COLON, - aux_sym_class_statement_token2, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_abstract_token1, - aux_sym_final_token1, - aux_sym_serializable_token1, - [41836] = 5, + aux_sym_include_repeat1, + [41798] = 10, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1548), 1, + ACTIONS(1513), 1, sym_identifier, - STATE(732), 2, + ACTIONS(1515), 1, + aux_sym_include_argument_token1, + ACTIONS(1519), 1, + anon_sym_DQUOTE, + ACTIONS(1544), 1, + anon_sym_RBRACE, + STATE(723), 1, + aux_sym_include_repeat1, + STATE(757), 1, + sym_include_argument, + STATE(778), 1, + sym_double_quoted_string, + STATE(731), 2, sym_comment, sym_include, - ACTIONS(1550), 5, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, - aux_sym_find_statement_token2, - aux_sym_find_statement_token3, - aux_sym_find_statement_token4, - [41857] = 4, + [41830] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(733), 2, + STATE(732), 2, sym_comment, sym_include, - ACTIONS(1552), 6, + ACTIONS(1546), 6, sym__terminator, anon_sym_LPAREN, anon_sym_RPAREN, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, anon_sym_COMMA, - [41876] = 5, + [41849] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1554), 1, + ACTIONS(1548), 1, sym_identifier, - STATE(734), 2, + STATE(733), 2, sym_comment, sym_include, - ACTIONS(1556), 5, + ACTIONS(1550), 5, aux_sym_for_statement_token2, aux_sym_for_statement_token3, aux_sym_find_statement_token2, aux_sym_find_statement_token3, aux_sym_find_statement_token4, - [41897] = 7, + [41870] = 9, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1558), 1, - sym__terminator, - STATE(752), 1, - aux_sym_variable_definition_repeat1, - STATE(834), 1, - sym_variable_tuning, - ACTIONS(1560), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - STATE(735), 2, + ACTIONS(1525), 1, + aux_sym_case_when_branch_token1, + ACTIONS(1552), 1, + aux_sym__block_terminator_token1, + ACTIONS(1554), 1, + aux_sym_case_otherwise_branch_token1, + STATE(744), 1, + aux_sym_case_body_repeat1, + STATE(811), 1, + sym_case_when_branch, + STATE(995), 1, + sym_case_otherwise_branch, + STATE(734), 2, sym_comment, sym_include, - [41921] = 7, - ACTIONS(311), 1, + [41899] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1562), 1, - sym__terminator, - STATE(740), 1, - aux_sym_variable_definition_repeat1, - STATE(834), 1, - sym_variable_tuning, - ACTIONS(1560), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - STATE(736), 2, + ACTIONS(1556), 1, + sym_identifier, + STATE(735), 2, sym_comment, sym_include, - [41945] = 6, + ACTIONS(1558), 5, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, + aux_sym_find_statement_token2, + aux_sym_find_statement_token3, + aux_sym_find_statement_token4, + [41920] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1564), 1, + ACTIONS(1560), 1, sym_identifier, - STATE(806), 1, - sym_assignment, - ACTIONS(1567), 2, + ACTIONS(1562), 1, sym__terminator, + ACTIONS(1564), 1, anon_sym_NO_DASHERROR, - STATE(737), 3, + STATE(743), 1, + aux_sym_assign_statement_repeat1, + STATE(841), 1, + sym_assignment, + STATE(736), 2, sym_comment, sym_include, - aux_sym_assign_statement_repeat1, - [41967] = 8, + [41946] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1569), 1, + ACTIONS(1560), 1, sym_identifier, - ACTIONS(1571), 1, + ACTIONS(1566), 1, sym__terminator, - ACTIONS(1573), 1, + ACTIONS(1568), 1, anon_sym_NO_DASHERROR, - STATE(737), 1, + STATE(743), 1, aux_sym_assign_statement_repeat1, - STATE(806), 1, + STATE(841), 1, sym_assignment, - STATE(738), 2, + STATE(737), 2, sym_comment, sym_include, - [41993] = 7, + [41972] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1575), 1, + ACTIONS(1570), 1, sym__terminator, - STATE(748), 1, + STATE(755), 1, aux_sym_variable_definition_repeat1, - STATE(834), 1, + STATE(845), 1, sym_variable_tuning, - ACTIONS(1560), 2, + ACTIONS(1572), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, - STATE(739), 2, + STATE(738), 2, sym_comment, sym_include, - [42017] = 6, - ACTIONS(311), 1, + [41996] = 7, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1574), 1, + sym_identifier, ACTIONS(1577), 1, + anon_sym_COLON, + STATE(761), 1, + sym_function_call, + STATE(922), 1, + sym_sort_column, + STATE(739), 3, + sym_comment, + sym_include, + aux_sym_sort_clause_repeat1, + [42020] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(1560), 1, + sym_identifier, + ACTIONS(1579), 1, sym__terminator, - STATE(834), 1, - sym_variable_tuning, - ACTIONS(1579), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - STATE(740), 3, + ACTIONS(1581), 1, + anon_sym_NO_DASHERROR, + STATE(736), 1, + aux_sym_assign_statement_repeat1, + STATE(841), 1, + sym_assignment, + STATE(740), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat1, - [42039] = 7, + [42046] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1582), 1, + ACTIONS(1583), 1, sym__terminator, - STATE(740), 1, + STATE(745), 1, aux_sym_variable_definition_repeat1, - STATE(834), 1, + STATE(845), 1, sym_variable_tuning, - ACTIONS(1560), 2, + ACTIONS(1572), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, STATE(741), 2, sym_comment, sym_include, - [42063] = 8, + [42070] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1569), 1, + ACTIONS(1560), 1, sym_identifier, - ACTIONS(1584), 1, + ACTIONS(1585), 1, sym__terminator, - ACTIONS(1586), 1, + ACTIONS(1587), 1, anon_sym_NO_DASHERROR, - STATE(738), 1, + STATE(737), 1, aux_sym_assign_statement_repeat1, - STATE(806), 1, + STATE(841), 1, sym_assignment, STATE(742), 2, sym_comment, sym_include, - [42089] = 8, + [42096] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1569), 1, + ACTIONS(1589), 1, sym_identifier, - ACTIONS(1588), 1, + STATE(841), 1, + sym_assignment, + ACTIONS(1592), 2, sym__terminator, - ACTIONS(1590), 1, anon_sym_NO_DASHERROR, - STATE(751), 1, - aux_sym_assign_statement_repeat1, - STATE(806), 1, - sym_assignment, - STATE(743), 2, + STATE(743), 3, sym_comment, sym_include, - [42115] = 7, + aux_sym_assign_statement_repeat1, + [42118] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1592), 1, - sym__terminator, - STATE(741), 1, - aux_sym_variable_definition_repeat1, - STATE(834), 1, - sym_variable_tuning, - ACTIONS(1560), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - STATE(744), 2, - sym_comment, - sym_include, - [42139] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, ACTIONS(1596), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - aux_sym_sort_order_token1, - STATE(949), 1, - sym_sort_order, + aux_sym_case_when_branch_token1, + STATE(811), 1, + sym_case_when_branch, ACTIONS(1594), 2, - sym_identifier, - anon_sym_COLON, - STATE(745), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(744), 3, sym_comment, sym_include, - [42163] = 6, + aux_sym_case_body_repeat1, + [42140] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, - aux_sym_case_when_branch_token1, - STATE(807), 1, - sym_case_when_branch, - ACTIONS(1600), 2, - aux_sym__block_terminator_token1, - aux_sym_case_otherwise_branch_token1, - STATE(746), 3, + ACTIONS(1599), 1, + sym__terminator, + STATE(845), 1, + sym_variable_tuning, + ACTIONS(1601), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + STATE(745), 3, sym_comment, sym_include, - aux_sym_case_statement_repeat1, - [42185] = 7, + aux_sym_variable_definition_repeat1, + [42162] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_RPAREN, - STATE(857), 1, + STATE(804), 1, sym_function_parameter, - STATE(1167), 1, + STATE(982), 1, sym_function_parameter_mode, - ACTIONS(1607), 2, + ACTIONS(1606), 2, aux_sym_input_expression_token1, aux_sym_procedure_parameter_definition_token1, - STATE(747), 2, + STATE(746), 2, sym_comment, sym_include, - [42209] = 7, + [42186] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1609), 1, + ACTIONS(1608), 1, sym__terminator, - STATE(740), 1, + STATE(745), 1, aux_sym_variable_definition_repeat1, - STATE(834), 1, + STATE(845), 1, sym_variable_tuning, - ACTIONS(1560), 2, + ACTIONS(1572), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, - STATE(748), 2, + STATE(747), 2, sym_comment, sym_include, - [42233] = 7, + [42210] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1611), 1, + ACTIONS(1610), 1, sym__terminator, - STATE(736), 1, + STATE(745), 1, aux_sym_variable_definition_repeat1, - STATE(834), 1, + STATE(845), 1, sym_variable_tuning, - ACTIONS(1560), 2, + ACTIONS(1572), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, - STATE(749), 2, - sym_comment, - sym_include, - [42257] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(1613), 1, - sym_identifier, - ACTIONS(1616), 1, - anon_sym_COLON, - STATE(768), 1, - sym_function_call, - STATE(910), 1, - sym_sort_column, - STATE(750), 3, + STATE(748), 2, sym_comment, sym_include, - aux_sym_sort_clause_repeat1, - [42281] = 8, - ACTIONS(3), 1, + [42234] = 7, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1569), 1, - sym_identifier, - ACTIONS(1618), 1, + ACTIONS(1612), 1, sym__terminator, - ACTIONS(1620), 1, - anon_sym_NO_DASHERROR, - STATE(737), 1, - aux_sym_assign_statement_repeat1, - STATE(806), 1, - sym_assignment, - STATE(751), 2, + STATE(747), 1, + aux_sym_variable_definition_repeat1, + STATE(845), 1, + sym_variable_tuning, + ACTIONS(1572), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + STATE(749), 2, sym_comment, sym_include, - [42307] = 7, + [42258] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1614), 1, sym__terminator, - STATE(740), 1, + STATE(748), 1, aux_sym_variable_definition_repeat1, - STATE(834), 1, + STATE(845), 1, sym_variable_tuning, - ACTIONS(1560), 2, + ACTIONS(1572), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, - STATE(752), 2, + STATE(750), 2, sym_comment, sym_include, - [42331] = 8, + [42282] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1624), 1, + ACTIONS(1616), 1, sym_identifier, - ACTIONS(1626), 1, + ACTIONS(1618), 1, anon_sym_COLON, - STATE(750), 1, + STATE(739), 1, aux_sym_sort_clause_repeat1, - STATE(768), 1, + STATE(761), 1, sym_function_call, - STATE(910), 1, + STATE(922), 1, sym_sort_column, - STATE(753), 2, + STATE(751), 2, sym_comment, sym_include, - [42357] = 8, + [42308] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1622), 1, + anon_sym_LPAREN, ACTIONS(1624), 1, + aux_sym_sort_order_token1, + STATE(961), 1, + sym_sort_order, + ACTIONS(1620), 2, sym_identifier, - ACTIONS(1628), 1, anon_sym_COLON, - STATE(750), 1, - aux_sym_sort_clause_repeat1, - STATE(768), 1, - sym_function_call, - STATE(910), 1, - sym_sort_column, - STATE(754), 2, + STATE(752), 2, sym_comment, sym_include, - [42383] = 7, + [42332] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1630), 1, + ACTIONS(1626), 1, anon_sym_RPAREN, - STATE(808), 1, + STATE(830), 1, sym_function_parameter, - STATE(1167), 1, + STATE(982), 1, sym_function_parameter_mode, - ACTIONS(1607), 2, + ACTIONS(1606), 2, aux_sym_input_expression_token1, aux_sym_procedure_parameter_definition_token1, - STATE(755), 2, + STATE(753), 2, sym_comment, sym_include, - [42407] = 5, + [42356] = 8, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1635), 1, - anon_sym_SQUOTE, - ACTIONS(1632), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(756), 3, + ACTIONS(1616), 1, + sym_identifier, + ACTIONS(1628), 1, + anon_sym_COLON, + STATE(739), 1, + aux_sym_sort_clause_repeat1, + STATE(761), 1, + sym_function_call, + STATE(922), 1, + sym_sort_column, + STATE(754), 2, sym_comment, sym_include, - aux_sym_single_quoted_string_repeat1, - [42426] = 6, - ACTIONS(3), 1, + [42382] = 7, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1639), 1, - anon_sym_SQUOTE, - STATE(770), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(757), 2, + ACTIONS(1630), 1, + sym__terminator, + STATE(745), 1, + aux_sym_variable_definition_repeat1, + STATE(845), 1, + sym_variable_tuning, + ACTIONS(1572), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + STATE(755), 2, sym_comment, sym_include, - [42447] = 6, - ACTIONS(3), 1, + [42406] = 7, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1641), 1, - anon_sym_SQUOTE, - STATE(756), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(758), 2, + ACTIONS(1632), 1, + sym__terminator, + STATE(741), 1, + aux_sym_variable_definition_repeat1, + STATE(845), 1, + sym_variable_tuning, + ACTIONS(1572), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + STATE(756), 2, sym_comment, sym_include, - [42468] = 6, + [42430] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - STATE(782), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(759), 2, + ACTIONS(1634), 1, + sym_identifier, + STATE(757), 2, sym_comment, sym_include, - [42489] = 6, + ACTIONS(1636), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + [42449] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1647), 1, - anon_sym_SQUOTE, - STATE(758), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, + ACTIONS(1638), 1, + anon_sym_DQUOTE, + STATE(769), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1640), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(760), 2, - sym_comment, - sym_include, - [42510] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(340), 1, - sym_identifier, - STATE(761), 2, + STATE(758), 2, sym_comment, - sym_include, - ACTIONS(342), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [42529] = 6, + sym_include, + [42470] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1649), 1, + ACTIONS(1642), 1, anon_sym_DQUOTE, - STATE(759), 1, + STATE(790), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, + ACTIONS(1640), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(762), 2, + STATE(759), 2, sym_comment, sym_include, - [42550] = 5, - ACTIONS(3), 1, + [42491] = 7, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1651), 1, - sym_identifier, - STATE(763), 2, + ACTIONS(1644), 1, + aux_sym_stream_definition_token1, + ACTIONS(1646), 1, + aux_sym_input_close_statement_token1, + ACTIONS(1648), 1, + aux_sym_input_close_statement_token2, + ACTIONS(1650), 1, + aux_sym_input_stream_statement_token1, + STATE(760), 2, sym_comment, sym_include, - ACTIONS(1653), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [42569] = 5, + [42514] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1655), 1, + ACTIONS(1624), 1, + aux_sym_sort_order_token1, + STATE(961), 1, + sym_sort_order, + ACTIONS(1620), 2, sym_identifier, - STATE(764), 2, + anon_sym_COLON, + STATE(761), 2, sym_comment, sym_include, - ACTIONS(1657), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [42588] = 5, + [42535] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1652), 1, sym_identifier, - STATE(765), 2, + ACTIONS(1654), 1, + aux_sym_do_while_statement_token1, + ACTIONS(1656), 1, + aux_sym_transaction_statement_token1, + STATE(1155), 1, + sym_assignment, + STATE(762), 2, sym_comment, sym_include, - ACTIONS(1661), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [42607] = 5, - ACTIONS(3), 1, + [42558] = 7, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1663), 1, - sym_identifier, - STATE(766), 2, + ACTIONS(1489), 1, + aux_sym_variable_definition_token3, + ACTIONS(1491), 1, + aux_sym_variable_definition_token4, + ACTIONS(1493), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1497), 1, + aux_sym_stream_definition_token1, + STATE(763), 2, sym_comment, sym_include, - ACTIONS(1665), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [42626] = 7, + [42581] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1624), 1, - sym_identifier, - STATE(753), 1, - aux_sym_sort_clause_repeat1, - STATE(768), 1, - sym_function_call, - STATE(910), 1, - sym_sort_column, - STATE(767), 2, + ACTIONS(1658), 1, + anon_sym_DQUOTE, + STATE(786), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1640), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(764), 2, sym_comment, sym_include, - [42649] = 6, + [42602] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1598), 1, - aux_sym_sort_order_token1, - STATE(949), 1, - sym_sort_order, - ACTIONS(1594), 2, + ACTIONS(1652), 1, sym_identifier, - anon_sym_COLON, - STATE(768), 2, + ACTIONS(1660), 1, + aux_sym_do_while_statement_token1, + ACTIONS(1662), 1, + aux_sym_transaction_statement_token1, + STATE(1130), 1, + sym_assignment, + STATE(765), 2, sym_comment, sym_include, - [42670] = 7, + [42625] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1483), 1, + ACTIONS(1463), 1, aux_sym_variable_definition_token3, - ACTIONS(1485), 1, + ACTIONS(1465), 1, aux_sym_variable_definition_token4, - ACTIONS(1487), 1, + ACTIONS(1467), 1, aux_sym_buffer_definition_token1, - ACTIONS(1491), 1, + ACTIONS(1471), 1, aux_sym_stream_definition_token1, - STATE(769), 2, + STATE(766), 2, sym_comment, sym_include, - [42693] = 6, + [42648] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1667), 1, - anon_sym_SQUOTE, - STATE(756), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(770), 2, + ACTIONS(324), 1, + sym_identifier, + STATE(767), 2, sym_comment, sym_include, - [42714] = 7, + ACTIONS(326), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + [42667] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1624), 1, - sym_identifier, - STATE(754), 1, - aux_sym_sort_clause_repeat1, - STATE(768), 1, - sym_function_call, - STATE(910), 1, - sym_sort_column, - STATE(771), 2, + ACTIONS(1666), 1, + anon_sym_SQUOTE, + STATE(785), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(1664), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(768), 2, sym_comment, sym_include, - [42737] = 6, + [42688] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1669), 1, + ACTIONS(1668), 1, anon_sym_DQUOTE, - STATE(782), 1, + STATE(786), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, + ACTIONS(1640), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(772), 2, + STATE(769), 2, sym_comment, sym_include, - [42758] = 7, + [42709] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1471), 1, - aux_sym_variable_definition_token3, - ACTIONS(1473), 1, - aux_sym_variable_definition_token4, - ACTIONS(1475), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1479), 1, + ACTIONS(1670), 1, + aux_sym_do_statement_token1, + ACTIONS(1672), 1, aux_sym_stream_definition_token1, - STATE(773), 2, + ACTIONS(1674), 1, + aux_sym_input_close_statement_token1, + ACTIONS(1676), 1, + aux_sym_input_close_statement_token2, + STATE(770), 2, sym_comment, sym_include, - [42781] = 7, + [42732] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1671), 1, - sym_identifier, - ACTIONS(1673), 1, - aux_sym_do_while_statement_token1, - ACTIONS(1675), 1, - aux_sym_transaction_statement_token1, - STATE(1153), 1, - sym_assignment, - STATE(774), 2, + ACTIONS(1678), 1, + anon_sym_DQUOTE, + STATE(764), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1640), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(771), 2, sym_comment, sym_include, - [42804] = 6, + [42753] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1677), 1, - anon_sym_DQUOTE, - STATE(776), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, - aux_sym_double_quoted_string_token1, + ACTIONS(1680), 1, + anon_sym_SQUOTE, + STATE(768), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(1664), 2, aux_sym_double_quoted_string_token2, - STATE(775), 2, + aux_sym_single_quoted_string_token1, + STATE(772), 2, sym_comment, sym_include, - [42825] = 6, + [42774] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1679), 1, - anon_sym_DQUOTE, + ACTIONS(1682), 1, + anon_sym_SQUOTE, STATE(782), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, - aux_sym_double_quoted_string_token1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(1664), 2, aux_sym_double_quoted_string_token2, - STATE(776), 2, + aux_sym_single_quoted_string_token1, + STATE(773), 2, sym_comment, sym_include, - [42846] = 7, + [42795] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1681), 1, - aux_sym_stream_definition_token1, - ACTIONS(1683), 1, - aux_sym_input_close_statement_token1, - ACTIONS(1685), 1, - aux_sym_input_close_statement_token2, - ACTIONS(1687), 1, - aux_sym_input_stream_statement_token1, - STATE(777), 2, + STATE(913), 1, + sym_function_parameter, + STATE(982), 1, + sym_function_parameter_mode, + ACTIONS(1606), 2, + aux_sym_input_expression_token1, + aux_sym_procedure_parameter_definition_token1, + STATE(774), 2, sym_comment, sym_include, - [42869] = 7, - ACTIONS(311), 1, + [42816] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, - aux_sym_do_statement_token1, - ACTIONS(1691), 1, - aux_sym_stream_definition_token1, - ACTIONS(1693), 1, - aux_sym_input_close_statement_token1, - ACTIONS(1695), 1, - aux_sym_input_close_statement_token2, - STATE(778), 2, + ACTIONS(1684), 1, + sym_identifier, + STATE(775), 2, sym_comment, sym_include, - [42892] = 6, + ACTIONS(1686), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + [42835] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1697), 1, + ACTIONS(332), 1, + sym_identifier, + STATE(776), 2, + sym_comment, + sym_include, + ACTIONS(334), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, anon_sym_DQUOTE, - STATE(782), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(779), 2, + [42854] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(1616), 1, + sym_identifier, + STATE(754), 1, + aux_sym_sort_clause_repeat1, + STATE(761), 1, + sym_function_call, + STATE(922), 1, + sym_sort_column, + STATE(777), 2, sym_comment, sym_include, - [42913] = 7, + [42877] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1671), 1, + ACTIONS(1688), 1, sym_identifier, - ACTIONS(1699), 1, - aux_sym_do_while_statement_token1, - ACTIONS(1701), 1, - aux_sym_transaction_statement_token1, - STATE(1001), 1, - sym_assignment, - STATE(780), 2, + STATE(778), 2, sym_comment, sym_include, - [42936] = 7, + ACTIONS(1690), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + [42896] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1703), 1, + ACTIONS(1692), 1, aux_sym_do_statement_token1, - ACTIONS(1705), 1, + ACTIONS(1694), 1, aux_sym_stream_definition_token1, - ACTIONS(1707), 1, + ACTIONS(1696), 1, aux_sym_input_close_statement_token1, - ACTIONS(1709), 1, + ACTIONS(1698), 1, aux_sym_input_close_statement_token2, - STATE(781), 2, + STATE(779), 2, sym_comment, sym_include, - [42959] = 5, + [42919] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1711), 1, - anon_sym_DQUOTE, - ACTIONS(1713), 2, - aux_sym_double_quoted_string_token1, + ACTIONS(1700), 1, + anon_sym_SQUOTE, + STATE(787), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(1664), 2, aux_sym_double_quoted_string_token2, - STATE(782), 3, + aux_sym_single_quoted_string_token1, + STATE(780), 2, sym_comment, sym_include, - aux_sym_double_quoted_string_repeat1, - [42978] = 6, + [42940] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1702), 1, anon_sym_DQUOTE, - STATE(779), 1, + STATE(789), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, + ACTIONS(1640), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(783), 2, + STATE(781), 2, sym_comment, sym_include, - [42999] = 6, + [42961] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1704), 1, anon_sym_SQUOTE, - STATE(786), 1, + STATE(785), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, + ACTIONS(1664), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(784), 2, + STATE(782), 2, sym_comment, sym_include, - [43020] = 6, + [42982] = 7, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(864), 1, - sym_function_parameter, - STATE(1167), 1, - sym_function_parameter_mode, - ACTIONS(1607), 2, - aux_sym_input_expression_token1, - aux_sym_procedure_parameter_definition_token1, - STATE(785), 2, + ACTIONS(1706), 1, + aux_sym_stream_definition_token1, + ACTIONS(1708), 1, + aux_sym_input_close_statement_token1, + ACTIONS(1710), 1, + aux_sym_input_close_statement_token2, + ACTIONS(1712), 1, + aux_sym_input_stream_statement_token1, + STATE(783), 2, + sym_comment, + sym_include, + [43005] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(1714), 1, + sym_identifier, + STATE(784), 2, sym_comment, sym_include, - [43041] = 6, + ACTIONS(1716), 3, + aux_sym_include_argument_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + [43024] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1720), 1, + ACTIONS(1721), 1, anon_sym_SQUOTE, - STATE(756), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(1637), 2, + ACTIONS(1718), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(786), 2, + STATE(785), 3, sym_comment, sym_include, - [43062] = 7, - ACTIONS(311), 1, + aux_sym_single_quoted_string_repeat1, + [43043] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_DQUOTE, + ACTIONS(1725), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(786), 3, + sym_comment, + sym_include, + aux_sym_double_quoted_string_repeat1, + [43062] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1722), 1, - aux_sym_stream_definition_token1, - ACTIONS(1724), 1, - aux_sym_input_close_statement_token1, - ACTIONS(1726), 1, - aux_sym_input_close_statement_token2, ACTIONS(1728), 1, - aux_sym_input_stream_statement_token1, + anon_sym_SQUOTE, + STATE(785), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(1664), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, STATE(787), 2, sym_comment, sym_include, - [43085] = 5, + [43083] = 7, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(336), 1, + ACTIONS(1616), 1, sym_identifier, + STATE(751), 1, + aux_sym_sort_clause_repeat1, + STATE(761), 1, + sym_function_call, + STATE(922), 1, + sym_sort_column, STATE(788), 2, sym_comment, sym_include, - ACTIONS(338), 3, - aux_sym_include_argument_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - [43104] = 6, + [43106] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(1730), 1, anon_sym_DQUOTE, - STATE(772), 1, + STATE(786), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(1645), 2, + ACTIONS(1640), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, STATE(789), 2, sym_comment, sym_include, - [43125] = 6, - ACTIONS(311), 1, + [43127] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1495), 1, - aux_sym_case_when_branch_token1, - STATE(714), 1, - aux_sym_case_statement_repeat1, - STATE(807), 1, - sym_case_when_branch, + ACTIONS(1732), 1, + anon_sym_DQUOTE, + STATE(786), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(1640), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, STATE(790), 2, sym_comment, sym_include, - [43145] = 6, + [43148] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1732), 1, - anon_sym_RPAREN, + ACTIONS(434), 1, + anon_sym_LPAREN, ACTIONS(1734), 1, - anon_sym_, - STATE(818), 1, - aux_sym_accumulate_statement_repeat1, + sym_identifier, + STATE(226), 1, + sym_parenthesized_expression, STATE(791), 2, sym_comment, sym_include, - [43165] = 5, + [43168] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(1736), 1, aux_sym__block_terminator_token1, - STATE(423), 2, + STATE(499), 1, sym__block_terminator, - sym__procedure_terminator, + STATE(539), 1, + sym__function_terminator, STATE(792), 2, sym_comment, sym_include, - [43183] = 6, + [43188] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(556), 1, - anon_sym_LPAREN, ACTIONS(1738), 1, sym_identifier, - STATE(361), 1, - sym_parenthesized_expression, + ACTIONS(1740), 1, + aux_sym_class_statement_token1, + STATE(1023), 1, + sym_qualified_name, STATE(793), 2, sym_comment, sym_include, - [43203] = 4, + [43208] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -46690,37 +46700,35 @@ static const uint16_t ts_small_parse_table[] = { STATE(794), 2, sym_comment, sym_include, - ACTIONS(1740), 3, - aux_sym_for_statement_token1, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, - [43219] = 4, - ACTIONS(311), 1, + ACTIONS(1742), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43224] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, STATE(795), 2, sym_comment, sym_include, - ACTIONS(1074), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [43235] = 6, + ACTIONS(1744), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [43240] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(728), 1, - anon_sym_COMMA, - ACTIONS(1742), 1, - anon_sym_RPAREN, - STATE(812), 1, - aux_sym_function_call_argument_repeat1, STATE(796), 2, sym_comment, sym_include, - [43255] = 4, + ACTIONS(1746), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43256] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -46728,312 +46736,308 @@ static const uint16_t ts_small_parse_table[] = { STATE(797), 2, sym_comment, sym_include, - ACTIONS(1126), 3, + ACTIONS(1136), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43271] = 4, + [43272] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(728), 1, + anon_sym_COMMA, + ACTIONS(1748), 1, + anon_sym_RPAREN, + STATE(858), 1, + aux_sym_function_call_argument_repeat1, STATE(798), 2, sym_comment, sym_include, - ACTIONS(1146), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [43287] = 4, + [43292] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(1750), 1, + aux_sym__block_terminator_token1, + STATE(426), 2, + sym__block_terminator, + sym__procedure_terminator, STATE(799), 2, sym_comment, sym_include, - ACTIONS(1162), 3, + [43310] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + STATE(800), 2, + sym_comment, + sym_include, + ACTIONS(574), 3, + sym_identifier, + anon_sym_COLON, + aux_sym_sort_order_token1, + [43326] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + STATE(801), 2, + sym_comment, + sym_include, + ACTIONS(1070), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43303] = 6, + [43342] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(1744), 1, - anon_sym_COLON, - STATE(68), 1, - aux_sym_qualified_name_repeat1, - STATE(800), 2, + ACTIONS(1736), 1, + aux_sym__block_terminator_token1, + STATE(499), 1, + sym__block_terminator, + STATE(534), 1, + sym__function_terminator, + STATE(802), 2, sym_comment, sym_include, - [43323] = 6, + [43362] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1746), 1, + ACTIONS(1752), 1, sym_identifier, - ACTIONS(1748), 1, - aux_sym_class_statement_token1, - STATE(1137), 1, - sym_qualified_name, - STATE(801), 2, + ACTIONS(1754), 2, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, + STATE(803), 2, sym_comment, sym_include, - [43343] = 6, - ACTIONS(3), 1, + [43380] = 6, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, - anon_sym_, - ACTIONS(1750), 1, + ACTIONS(1756), 1, anon_sym_RPAREN, - STATE(818), 1, - aux_sym_accumulate_statement_repeat1, - STATE(802), 2, + ACTIONS(1758), 1, + anon_sym_COMMA, + STATE(839), 1, + aux_sym_function_statement_repeat1, + STATE(804), 2, sym_comment, sym_include, - [43363] = 6, - ACTIONS(311), 1, + [43400] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1495), 1, - aux_sym_case_when_branch_token1, - STATE(715), 1, - aux_sym_case_statement_repeat1, - STATE(807), 1, - sym_case_when_branch, - STATE(803), 2, + ACTIONS(1760), 1, + anon_sym_RPAREN, + ACTIONS(1762), 1, + anon_sym_, + STATE(809), 1, + aux_sym_accumulate_statement_repeat1, + STATE(805), 2, sym_comment, sym_include, - [43383] = 6, + [43420] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1764), 1, sym_identifier, - ACTIONS(1754), 1, + ACTIONS(1766), 1, aux_sym_input_expression_token2, - STATE(373), 1, + STATE(361), 1, sym_qualified_name, - STATE(804), 2, + STATE(806), 2, + sym_comment, + sym_include, + [43440] = 5, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + aux_sym__block_terminator_token1, + STATE(542), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(807), 2, sym_comment, sym_include, - [43403] = 6, + [43458] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1756), 1, - sym_identifier, - ACTIONS(1758), 1, - aux_sym_class_statement_token1, - STATE(1083), 1, - sym_qualified_name, - STATE(805), 2, + STATE(808), 2, sym_comment, sym_include, - [43423] = 4, + ACTIONS(1768), 3, + aux_sym_double_quoted_string_token2, + anon_sym_SQUOTE, + aux_sym_single_quoted_string_token1, + [43474] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(806), 2, + ACTIONS(1770), 1, + anon_sym_RPAREN, + ACTIONS(1772), 1, + anon_sym_, + STATE(809), 3, sym_comment, sym_include, - ACTIONS(1760), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [43439] = 4, + aux_sym_accumulate_statement_repeat1, + [43492] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(807), 2, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(1762), 3, + ACTIONS(914), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43455] = 6, + [43508] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1764), 1, - anon_sym_RPAREN, - ACTIONS(1766), 1, - anon_sym_COMMA, - STATE(837), 1, - aux_sym_function_statement_repeat1, - STATE(808), 2, + STATE(811), 2, sym_comment, sym_include, - [43475] = 4, + ACTIONS(1775), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43524] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(809), 2, + ACTIONS(1762), 1, + anon_sym_, + ACTIONS(1777), 1, + anon_sym_RPAREN, + STATE(809), 1, + aux_sym_accumulate_statement_repeat1, + STATE(812), 2, sym_comment, sym_include, - ACTIONS(584), 3, - sym_identifier, - anon_sym_COLON, - aux_sym_sort_order_token1, - [43491] = 6, + [43544] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, - anon_sym_, - ACTIONS(1768), 1, - anon_sym_RPAREN, - STATE(791), 1, - aux_sym_accumulate_statement_repeat1, - STATE(810), 2, + STATE(813), 2, sym_comment, sym_include, - [43511] = 6, + ACTIONS(586), 3, + sym_identifier, + anon_sym_COLON, + aux_sym_sort_order_token1, + [43560] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1493), 1, + ACTIONS(1779), 1, aux_sym__block_terminator_token1, - STATE(445), 1, - sym__case_terminator, - STATE(580), 1, + STATE(437), 2, sym__block_terminator, - STATE(811), 2, + sym__procedure_terminator, + STATE(814), 2, sym_comment, sym_include, - [43531] = 5, + [43578] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(736), 1, - anon_sym_RPAREN, - ACTIONS(1770), 1, - anon_sym_COMMA, - STATE(812), 3, + STATE(815), 2, sym_comment, sym_include, - aux_sym_function_call_argument_repeat1, - [43549] = 5, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1773), 1, + ACTIONS(878), 3, aux_sym__block_terminator_token1, - STATE(556), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(813), 2, - sym_comment, - sym_include, - [43567] = 6, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43594] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__namedot, - ACTIONS(1775), 1, + ACTIONS(1781), 1, anon_sym_COLON, - STATE(68), 1, + STATE(67), 1, aux_sym_qualified_name_repeat1, - STATE(814), 2, + STATE(816), 2, sym_comment, sym_include, - [43587] = 4, + [43614] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - STATE(815), 2, + ACTIONS(1783), 1, + sym_identifier, + ACTIONS(1785), 1, + aux_sym_class_statement_token1, + STATE(1140), 1, + sym_qualified_name, + STATE(817), 2, sym_comment, sym_include, - ACTIONS(1777), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [43603] = 4, + [43634] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(816), 2, + STATE(818), 2, sym_comment, sym_include, - ACTIONS(1152), 3, + ACTIONS(854), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43619] = 6, + [43650] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, - aux_sym__block_terminator_token1, - STATE(453), 1, - sym__function_terminator, - STATE(472), 1, - sym__block_terminator, - STATE(817), 2, - sym_comment, - sym_include, - [43639] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(1781), 1, - anon_sym_RPAREN, - ACTIONS(1783), 1, - anon_sym_, - STATE(818), 3, + STATE(819), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [43657] = 4, + ACTIONS(874), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43666] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(819), 2, - sym_comment, - sym_include, - ACTIONS(1786), 3, - aux_sym_for_statement_token1, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, - [43673] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, STATE(820), 2, sym_comment, sym_include, - ACTIONS(548), 3, - sym_identifier, - anon_sym_COLON, - aux_sym_sort_order_token1, - [43689] = 4, + ACTIONS(886), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43682] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47041,25 +47045,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(821), 2, sym_comment, sym_include, - ACTIONS(894), 3, + ACTIONS(892), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43705] = 6, + [43698] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, + ACTIONS(1529), 1, aux_sym__block_terminator_token1, - STATE(455), 1, - sym__function_terminator, - STATE(472), 1, + STATE(441), 1, sym__block_terminator, + STATE(596), 1, + sym__case_terminator, STATE(822), 2, sym_comment, sym_include, - [43725] = 4, + [43718] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47067,11 +47071,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(823), 2, sym_comment, sym_include, - ACTIONS(1788), 3, + ACTIONS(902), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43741] = 4, + [43734] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47079,11 +47083,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(824), 2, sym_comment, sym_include, - ACTIONS(876), 3, + ACTIONS(904), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43757] = 4, + [43750] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47091,11 +47095,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(825), 2, sym_comment, sym_include, - ACTIONS(848), 3, + ACTIONS(1180), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43773] = 4, + [43766] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47103,11 +47107,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(826), 2, sym_comment, sym_include, - ACTIONS(862), 3, + ACTIONS(1192), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43789] = 4, + [43782] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47115,76 +47119,78 @@ static const uint16_t ts_small_parse_table[] = { STATE(827), 2, sym_comment, sym_include, - ACTIONS(852), 3, + ACTIONS(900), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43805] = 5, + [43798] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1773), 1, - aux_sym__block_terminator_token1, - STATE(522), 2, - sym__block_terminator, - sym__procedure_terminator, STATE(828), 2, sym_comment, sym_include, - [43823] = 4, + ACTIONS(1102), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43814] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(1787), 1, + aux_sym__block_terminator_token1, + STATE(497), 1, + sym__function_terminator, + STATE(514), 1, + sym__block_terminator, STATE(829), 2, sym_comment, sym_include, - ACTIONS(884), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [43839] = 4, + [43834] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1789), 1, + anon_sym_RPAREN, + STATE(857), 1, + aux_sym_function_statement_repeat1, STATE(830), 2, sym_comment, sym_include, - ACTIONS(888), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [43855] = 6, - ACTIONS(311), 1, + [43854] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1499), 1, - aux_sym__block_terminator_token1, - STATE(513), 1, - sym__case_terminator, - STATE(552), 1, - sym__block_terminator, + ACTIONS(1791), 1, + sym_identifier, + ACTIONS(1793), 2, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, STATE(831), 2, sym_comment, sym_include, - [43875] = 6, - ACTIONS(311), 1, + [43872] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(1790), 1, - anon_sym_COLON, - STATE(68), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + aux_sym_input_expression_token2, + STATE(245), 1, + sym_qualified_name, STATE(832), 2, sym_comment, sym_include, - [43895] = 4, + [43892] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47192,11 +47198,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(833), 2, sym_comment, sym_include, - ACTIONS(906), 3, + ACTIONS(944), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [43911] = 4, + [43908] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47204,92 +47210,92 @@ static const uint16_t ts_small_parse_table[] = { STATE(834), 2, sym_comment, sym_include, - ACTIONS(1792), 3, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - [43927] = 6, + ACTIONS(1799), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [43924] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, - aux_sym__block_terminator_token1, - STATE(460), 1, - sym__function_terminator, - STATE(472), 1, - sym__block_terminator, - STATE(835), 2, + ACTIONS(1801), 1, + anon_sym_RPAREN, + ACTIONS(1803), 1, + anon_sym_COMMA, + STATE(835), 3, sym_comment, sym_include, - [43947] = 5, - ACTIONS(3), 1, + aux_sym_function_statement_repeat1, + [43942] = 6, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1794), 1, - sym_identifier, - ACTIONS(1796), 2, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(1806), 1, + anon_sym_COLON, + STATE(67), 1, + aux_sym_qualified_name_repeat1, STATE(836), 2, sym_comment, sym_include, - [43965] = 6, - ACTIONS(311), 1, + [43962] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, - anon_sym_COMMA, - ACTIONS(1798), 1, - anon_sym_RPAREN, - STATE(856), 1, - aux_sym_function_statement_repeat1, + ACTIONS(53), 1, + anon_sym_LPAREN, + ACTIONS(1808), 1, + sym_identifier, + STATE(244), 1, + sym_parenthesized_expression, STATE(837), 2, sym_comment, sym_include, - [43985] = 6, + [43982] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - sym__namedot, - ACTIONS(1800), 1, - anon_sym_COLON, - STATE(68), 1, - aux_sym_qualified_name_repeat1, STATE(838), 2, sym_comment, sym_include, - [44005] = 6, - ACTIONS(3), 1, + ACTIONS(1810), 3, + aux_sym_for_statement_token1, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, + [43998] = 6, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1802), 1, - sym_identifier, - ACTIONS(1804), 1, - aux_sym_input_expression_token2, - STATE(233), 1, - sym_qualified_name, + ACTIONS(1758), 1, + anon_sym_COMMA, + ACTIONS(1812), 1, + anon_sym_RPAREN, + STATE(835), 1, + aux_sym_function_statement_repeat1, STATE(839), 2, sym_comment, sym_include, - [44025] = 4, - ACTIONS(311), 1, + [44018] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(530), 1, + anon_sym_LPAREN, + ACTIONS(1814), 1, + sym_identifier, + STATE(358), 1, + sym_parenthesized_expression, STATE(840), 2, sym_comment, sym_include, - ACTIONS(1806), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44041] = 4, + [44038] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -47297,114 +47303,120 @@ static const uint16_t ts_small_parse_table[] = { STATE(841), 2, sym_comment, sym_include, - ACTIONS(1808), 3, - aux_sym_double_quoted_string_token2, - anon_sym_SQUOTE, - aux_sym_single_quoted_string_token1, - [44057] = 6, - ACTIONS(3), 1, + ACTIONS(1816), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + [44054] = 6, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_LPAREN, - ACTIONS(1810), 1, - sym_identifier, - STATE(242), 1, - sym_parenthesized_expression, + ACTIONS(1736), 1, + aux_sym__block_terminator_token1, + STATE(499), 1, + sym__block_terminator, + STATE(521), 1, + sym__function_terminator, STATE(842), 2, sym_comment, sym_include, - [44077] = 4, + [44074] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(1787), 1, + aux_sym__block_terminator_token1, + STATE(486), 1, + sym__function_terminator, + STATE(514), 1, + sym__block_terminator, STATE(843), 2, sym_comment, sym_include, - ACTIONS(994), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44093] = 4, + [44094] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(1818), 1, + anon_sym_COLON, + STATE(67), 1, + aux_sym_qualified_name_repeat1, STATE(844), 2, sym_comment, sym_include, - ACTIONS(918), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44109] = 5, - ACTIONS(3), 1, + [44114] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1812), 1, - sym_identifier, - ACTIONS(1814), 2, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, STATE(845), 2, sym_comment, sym_include, - [44127] = 4, - ACTIONS(311), 1, + ACTIONS(1820), 3, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + [44130] = 6, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, + ACTIONS(1762), 1, + anon_sym_, + ACTIONS(1822), 1, + anon_sym_RPAREN, + STATE(812), 1, + aux_sym_accumulate_statement_repeat1, STATE(846), 2, sym_comment, sym_include, - ACTIONS(1136), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44143] = 5, + [44150] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1816), 1, + ACTIONS(1824), 1, sym_identifier, - ACTIONS(1818), 2, + ACTIONS(1826), 2, aux_sym_for_statement_token2, aux_sym_for_statement_token3, STATE(847), 2, sym_comment, sym_include, - [44161] = 6, + [44168] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1820), 1, + ACTIONS(1787), 1, aux_sym__block_terminator_token1, - STATE(499), 1, - sym__block_terminator, - STATE(538), 1, + STATE(482), 1, sym__function_terminator, + STATE(514), 1, + sym__block_terminator, STATE(848), 2, sym_comment, sym_include, - [44181] = 5, + [44188] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1736), 1, - aux_sym__block_terminator_token1, - STATE(593), 2, - sym__block_terminator, - sym__procedure_terminator, + ACTIONS(315), 1, + sym__namedot, + ACTIONS(1828), 1, + anon_sym_COLON, + STATE(67), 1, + aux_sym_qualified_name_repeat1, STATE(849), 2, sym_comment, sym_include, - [44199] = 4, + [44208] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47412,25 +47424,23 @@ static const uint16_t ts_small_parse_table[] = { STATE(850), 2, sym_comment, sym_include, - ACTIONS(1822), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44215] = 6, + ACTIONS(1830), 3, + aux_sym_for_statement_token1, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, + [44224] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1820), 1, - aux_sym__block_terminator_token1, - STATE(499), 1, - sym__block_terminator, - STATE(533), 1, - sym__function_terminator, STATE(851), 2, sym_comment, sym_include, - [44235] = 4, + ACTIONS(1832), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [44240] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -47438,1175 +47448,1172 @@ static const uint16_t ts_small_parse_table[] = { STATE(852), 2, sym_comment, sym_include, - ACTIONS(1824), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [44251] = 6, + ACTIONS(1834), 3, + aux_sym_for_statement_token1, + aux_sym_for_statement_token2, + aux_sym_for_statement_token3, + [44256] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(1826), 1, - sym_identifier, - STATE(205), 1, - sym_parenthesized_expression, + ACTIONS(1762), 1, + anon_sym_, + ACTIONS(1836), 1, + anon_sym_RPAREN, + STATE(805), 1, + aux_sym_accumulate_statement_repeat1, STATE(853), 2, sym_comment, sym_include, - [44271] = 6, + [44276] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, - anon_sym_COMMA, - ACTIONS(1828), 1, - anon_sym_RPAREN, - STATE(856), 1, - aux_sym_function_statement_repeat1, + ACTIONS(1779), 1, + aux_sym__block_terminator_token1, + STATE(568), 2, + sym__block_terminator, + sym__procedure_terminator, STATE(854), 2, sym_comment, sym_include, - [44291] = 6, - ACTIONS(3), 1, + [44294] = 6, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1830), 1, - sym_identifier, - ACTIONS(1832), 1, - aux_sym_input_expression_token2, - STATE(228), 1, - sym_qualified_name, + ACTIONS(1523), 1, + aux_sym__block_terminator_token1, + STATE(491), 1, + sym__block_terminator, + STATE(594), 1, + sym__case_terminator, STATE(855), 2, sym_comment, sym_include, - [44311] = 5, + [44314] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1834), 1, - anon_sym_RPAREN, - ACTIONS(1836), 1, - anon_sym_COMMA, - STATE(856), 3, + STATE(856), 2, sym_comment, sym_include, - aux_sym_function_statement_repeat1, - [44329] = 6, + ACTIONS(1020), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [44330] = 6, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, + ACTIONS(1758), 1, anon_sym_COMMA, - ACTIONS(1839), 1, + ACTIONS(1838), 1, anon_sym_RPAREN, - STATE(854), 1, + STATE(835), 1, aux_sym_function_statement_repeat1, STATE(857), 2, sym_comment, sym_include, - [44349] = 6, - ACTIONS(311), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_LBRACE, - ACTIONS(1820), 1, - aux_sym__block_terminator_token1, - STATE(499), 1, - sym__block_terminator, - STATE(520), 1, - sym__function_terminator, - STATE(858), 2, - sym_comment, - sym_include, - [44369] = 4, + [44350] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - STATE(859), 2, + ACTIONS(736), 1, + anon_sym_RPAREN, + ACTIONS(1840), 1, + anon_sym_COMMA, + STATE(858), 3, sym_comment, sym_include, - ACTIONS(1841), 3, - aux_sym_for_statement_token1, - aux_sym_for_statement_token2, - aux_sym_for_statement_token3, - [44385] = 6, + aux_sym_function_call_argument_repeat1, + [44368] = 6, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, - anon_sym_, ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(802), 1, - aux_sym_accumulate_statement_repeat1, - STATE(860), 2, + sym_identifier, + ACTIONS(1845), 1, + aux_sym_input_expression_token2, + STATE(229), 1, + sym_qualified_name, + STATE(859), 2, sym_comment, sym_include, - [44405] = 4, + [44388] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1845), 2, + ACTIONS(1847), 1, sym__terminator, + ACTIONS(1849), 1, + aux_sym_finally_statement_token1, + STATE(860), 2, + sym_comment, + sym_include, + [44405] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, anon_sym_COLON, STATE(861), 2, sym_comment, sym_include, - [44420] = 5, + [44422] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - aux_sym__block_terminator_token1, - STATE(557), 1, - sym__block_terminator, + ACTIONS(1855), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(1857), 1, + aux_sym_function_statement_token1, STATE(862), 2, sym_comment, sym_include, - [44437] = 5, - ACTIONS(311), 1, + [44439] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(441), 1, - sym__block_terminator, + ACTIONS(1859), 1, + sym_identifier, + STATE(1143), 1, + sym_qualified_name, STATE(863), 2, sym_comment, sym_include, - [44454] = 4, - ACTIONS(311), 1, + [44456] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1834), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1861), 1, + sym_identifier, + STATE(256), 1, + sym_function_call, STATE(864), 2, sym_comment, sym_include, - [44469] = 4, + [44473] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1851), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(1863), 1, + aux_sym_if_do_statement_token1, + ACTIONS(1865), 1, + aux_sym_if_do_statement_token3, STATE(865), 2, sym_comment, sym_include, - [44484] = 5, + [44490] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(518), 1, - sym__block_terminator, + ACTIONS(1867), 1, + aux_sym_variable_definition_token5, + ACTIONS(1869), 1, + aux_sym_variable_definition_token6, STATE(866), 2, sym_comment, sym_include, - [44501] = 4, + [44507] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1853), 2, - sym__terminator, + ACTIONS(1871), 1, anon_sym_COLON, + ACTIONS(1873), 1, + aux_sym_procedure_statement_token1, STATE(867), 2, sym_comment, sym_include, - [44516] = 5, - ACTIONS(3), 1, + [44524] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1855), 1, - sym_identifier, - STATE(259), 1, - sym_function_call, + ACTIONS(1875), 1, + aux_sym_procedure_parameter_definition_token3, + ACTIONS(1877), 1, + aux_sym_function_statement_token1, STATE(868), 2, sym_comment, sym_include, - [44533] = 5, - ACTIONS(311), 1, + [44541] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1857), 1, - aux_sym_do_statement_token1, - ACTIONS(1859), 1, - aux_sym_input_close_statement_token2, + ACTIONS(1879), 1, + sym_identifier, + STATE(170), 1, + sym_function_call, STATE(869), 2, sym_comment, sym_include, - [44550] = 5, + [44558] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1861), 1, - sym__terminator, - ACTIONS(1863), 1, - aux_sym_finally_statement_token1, + ACTIONS(1881), 1, + aux_sym_input_close_statement_token2, + ACTIONS(1883), 1, + aux_sym_input_stream_statement_token1, STATE(870), 2, sym_comment, sym_include, - [44567] = 5, - ACTIONS(3), 1, + [44575] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1865), 1, - sym_identifier, - STATE(237), 1, - sym_qualified_name, + ACTIONS(1885), 1, + aux_sym_variable_definition_token5, + ACTIONS(1887), 1, + aux_sym_variable_definition_token6, STATE(871), 2, sym_comment, sym_include, - [44584] = 5, + [44592] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - aux_sym__block_terminator_token1, - STATE(850), 1, - sym__block_terminator, + ACTIONS(1889), 1, + sym__terminator, + ACTIONS(1891), 1, + aux_sym_finally_statement_token1, STATE(872), 2, sym_comment, sym_include, - [44601] = 5, + [44609] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1869), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(1871), 1, - aux_sym_buffer_definition_token3, + STATE(242), 1, + sym_qualified_name, STATE(873), 2, sym_comment, sym_include, - [44618] = 5, - ACTIONS(3), 1, + [44626] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, - sym_identifier, - STATE(343), 1, - sym_function_call, + ACTIONS(1895), 2, + sym__terminator, + anon_sym_COLON, STATE(874), 2, sym_comment, sym_include, - [44635] = 5, + [44641] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - anon_sym_COLON, - ACTIONS(1877), 1, - aux_sym_procedure_statement_token1, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(423), 1, + sym__block_terminator, STATE(875), 2, sym_comment, sym_include, - [44652] = 5, + [44658] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - anon_sym_DOT, - ACTIONS(1881), 1, - aux_sym__procedure_terminator_token1, + ACTIONS(1899), 1, + aux_sym_do_statement_token1, + ACTIONS(1901), 1, + aux_sym_input_close_statement_token2, STATE(876), 2, sym_comment, sym_include, - [44669] = 5, + [44675] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - aux_sym__block_terminator_token1, - STATE(816), 1, - sym__block_terminator, + ACTIONS(1899), 1, + aux_sym_do_statement_token1, + ACTIONS(1903), 1, + aux_sym_input_close_statement_token2, STATE(877), 2, sym_comment, sym_include, - [44686] = 5, - ACTIONS(311), 1, + [44692] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1883), 1, - aux_sym_variable_definition_token5, - ACTIONS(1885), 1, - aux_sym_variable_definition_token6, + ACTIONS(1905), 1, + sym_identifier, + STATE(626), 1, + sym_qualified_name, STATE(878), 2, sym_comment, sym_include, - [44703] = 5, + [44709] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, + ACTIONS(1907), 1, aux_sym__block_terminator_token1, - STATE(799), 1, + STATE(440), 1, sym__block_terminator, STATE(879), 2, sym_comment, sym_include, - [44720] = 5, + [44726] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1887), 1, + ACTIONS(1909), 1, sym__terminator, - ACTIONS(1889), 1, - aux_sym_class_statement_token1, + ACTIONS(1911), 1, + aux_sym_finally_statement_token1, STATE(880), 2, sym_comment, sym_include, - [44737] = 5, - ACTIONS(311), 1, + [44743] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, - sym__terminator, - ACTIONS(1893), 1, - aux_sym_catch_statement_token1, + ACTIONS(1913), 1, + sym_identifier, + ACTIONS(1915), 1, + aux_sym_buffer_definition_token3, STATE(881), 2, sym_comment, sym_include, - [44754] = 5, + [44760] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1895), 1, - aux_sym_variable_definition_token5, - ACTIONS(1897), 1, - aux_sym_variable_definition_token6, + ACTIONS(1917), 1, + sym__terminator, + ACTIONS(1919), 1, + aux_sym_class_statement_token1, STATE(882), 2, sym_comment, sym_include, - [44771] = 5, + [44777] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(528), 1, - sym__block_terminator, + ACTIONS(1921), 1, + anon_sym_DOT, + ACTIONS(1923), 1, + aux_sym__function_terminator_token1, STATE(883), 2, sym_comment, sym_include, - [44788] = 4, + [44794] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1899), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1925), 1, + sym__terminator, + ACTIONS(1927), 1, + aux_sym_catch_statement_token1, STATE(884), 2, sym_comment, sym_include, - [44803] = 5, + [44811] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(515), 1, - sym__block_terminator, + ACTIONS(1921), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + aux_sym__case_terminator_token1, STATE(885), 2, sym_comment, sym_include, - [44820] = 5, + [44828] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1901), 1, - aux_sym__block_terminator_token1, - STATE(347), 1, - sym__block_terminator, + ACTIONS(1921), 1, + anon_sym_DOT, + ACTIONS(1931), 1, + aux_sym__procedure_terminator_token1, STATE(886), 2, sym_comment, sym_include, - [44837] = 5, - ACTIONS(311), 1, + [44845] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, - sym__terminator, - ACTIONS(1905), 1, - aux_sym_catch_statement_token1, + ACTIONS(850), 1, + anon_sym_RPAREN, + ACTIONS(1933), 1, + anon_sym_, STATE(887), 2, sym_comment, sym_include, - [44854] = 5, + [44862] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, + ACTIONS(1935), 1, aux_sym__block_terminator_token1, - STATE(798), 1, + STATE(393), 1, sym__block_terminator, STATE(888), 2, sym_comment, sym_include, - [44871] = 5, - ACTIONS(311), 1, + [44879] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1907), 1, - sym__terminator, - ACTIONS(1909), 1, - aux_sym_finally_statement_token1, + ACTIONS(1937), 1, + sym_identifier, + STATE(214), 1, + sym_qualified_name, STATE(889), 2, sym_comment, sym_include, - [44888] = 5, + [44896] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - aux_sym__block_terminator_token1, - STATE(797), 1, - sym__block_terminator, + ACTIONS(1939), 1, + sym__terminator, + ACTIONS(1941), 1, + aux_sym_finally_statement_token1, STATE(890), 2, sym_comment, sym_include, - [44905] = 5, + [44913] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1911), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(1913), 1, - aux_sym_function_statement_token1, + ACTIONS(1943), 1, + aux_sym_do_statement_token1, + ACTIONS(1945), 1, + aux_sym_input_close_statement_token2, STATE(891), 2, sym_comment, sym_include, - [44922] = 5, + [44930] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1901), 1, + ACTIONS(1935), 1, aux_sym__block_terminator_token1, - STATE(385), 1, + STATE(388), 1, sym__block_terminator, STATE(892), 2, sym_comment, sym_include, - [44939] = 5, + [44947] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1915), 1, + ACTIONS(1943), 1, + aux_sym_do_statement_token1, + ACTIONS(1947), 1, aux_sym_input_close_statement_token2, - ACTIONS(1917), 1, - aux_sym_input_stream_statement_token1, STATE(893), 2, sym_comment, sym_include, - [44956] = 5, + [44964] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1917), 1, - aux_sym_input_stream_statement_token1, - ACTIONS(1919), 1, + ACTIONS(1949), 1, aux_sym_input_close_statement_token2, + ACTIONS(1951), 1, + aux_sym_input_stream_statement_token1, STATE(894), 2, sym_comment, sym_include, - [44973] = 5, + [44981] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1857), 1, - aux_sym_do_statement_token1, - ACTIONS(1921), 1, - aux_sym_input_close_statement_token2, + ACTIONS(1953), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(895), 2, sym_comment, sym_include, - [44990] = 5, + [44996] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(470), 1, - sym__block_terminator, + ACTIONS(1951), 1, + aux_sym_input_stream_statement_token1, + ACTIONS(1955), 1, + aux_sym_input_close_statement_token2, STATE(896), 2, sym_comment, sym_include, - [45007] = 5, - ACTIONS(311), 1, + [45013] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - aux_sym__block_terminator_token1, - STATE(795), 1, - sym__block_terminator, + ACTIONS(1957), 1, + sym_identifier, + ACTIONS(1959), 1, + aux_sym_buffer_definition_token3, STATE(897), 2, sym_comment, sym_include, - [45024] = 5, + [45030] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - aux_sym__block_terminator_token1, - STATE(530), 1, - sym__block_terminator, + ACTIONS(1883), 1, + aux_sym_input_stream_statement_token1, + ACTIONS(1961), 1, + aux_sym_input_close_statement_token2, STATE(898), 2, sym_comment, sym_include, - [45041] = 5, - ACTIONS(3), 1, + [45047] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1923), 1, - sym_identifier, - STATE(1140), 1, - sym_qualified_name, + ACTIONS(1907), 1, + aux_sym__block_terminator_token1, + STATE(576), 1, + sym__block_terminator, STATE(899), 2, sym_comment, sym_include, - [45058] = 5, + [45064] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1925), 1, - aux_sym_input_close_statement_token2, - ACTIONS(1927), 1, - aux_sym_input_stream_statement_token1, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(529), 1, + sym__block_terminator, STATE(900), 2, sym_comment, sym_include, - [45075] = 5, + [45081] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1927), 1, - aux_sym_input_stream_statement_token1, - ACTIONS(1929), 1, - aux_sym_input_close_statement_token2, + ACTIONS(1963), 1, + anon_sym_COLON, + ACTIONS(1965), 1, + aux_sym_procedure_statement_token1, STATE(901), 2, sym_comment, sym_include, - [45092] = 5, + [45098] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1897), 1, aux_sym__block_terminator_token1, - STATE(527), 1, + STATE(519), 1, sym__block_terminator, STATE(902), 2, sym_comment, sym_include, - [45109] = 5, - ACTIONS(3), 1, + [45115] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1933), 1, - aux_sym_buffer_definition_token3, + ACTIONS(1907), 1, + aux_sym__block_terminator_token1, + STATE(571), 1, + sym__block_terminator, STATE(903), 2, sym_comment, sym_include, - [45126] = 4, + [45132] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1935), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(1967), 1, + anon_sym_DOT, + ACTIONS(1969), 1, + aux_sym__procedure_terminator_token1, STATE(904), 2, sym_comment, sym_include, - [45141] = 5, + [45149] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1937), 1, + ACTIONS(1971), 1, sym__terminator, - ACTIONS(1939), 1, + ACTIONS(1973), 1, aux_sym_class_statement_token1, STATE(905), 2, sym_comment, sym_include, - [45158] = 5, + [45166] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1941), 1, - anon_sym_COLON, - ACTIONS(1943), 1, - aux_sym_procedure_statement_token1, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(796), 1, + sym__block_terminator, STATE(906), 2, sym_comment, sym_include, - [45175] = 5, + [45183] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, - sym__terminator, - ACTIONS(1947), 1, - aux_sym_class_statement_token1, + ACTIONS(1967), 1, + anon_sym_DOT, + ACTIONS(1977), 1, + aux_sym__case_terminator_token1, STATE(907), 2, sym_comment, sym_include, - [45192] = 5, + [45200] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1949), 1, + ACTIONS(1979), 1, sym__terminator, - ACTIONS(1951), 1, + ACTIONS(1981), 1, aux_sym_class_statement_token1, STATE(908), 2, sym_comment, sym_include, - [45209] = 5, + [45217] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1953), 1, + ACTIONS(1983), 1, sym__terminator, - ACTIONS(1955), 1, + ACTIONS(1985), 1, aux_sym_class_statement_token1, STATE(909), 2, sym_comment, sym_include, - [45226] = 5, - ACTIONS(3), 1, + [45234] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1957), 1, - sym_identifier, - ACTIONS(1959), 1, - anon_sym_COLON, + ACTIONS(1987), 1, + sym__terminator, + ACTIONS(1989), 1, + aux_sym_class_statement_token1, STATE(910), 2, sym_comment, sym_include, - [45243] = 5, - ACTIONS(311), 1, + [45251] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, - anon_sym_DOT, - ACTIONS(1963), 1, - aux_sym__function_terminator_token1, + ACTIONS(1991), 1, + sym_identifier, + STATE(994), 1, + sym_qualified_name, STATE(911), 2, sym_comment, sym_include, - [45260] = 5, + [45268] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1901), 1, - aux_sym__block_terminator_token1, - STATE(381), 1, - sym__block_terminator, + ACTIONS(1993), 2, + sym__terminator, + anon_sym_COLON, STATE(912), 2, sym_comment, sym_include, - [45277] = 5, - ACTIONS(3), 1, + [45283] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1965), 1, - sym_identifier, - STATE(279), 1, - sym_function_call, + ACTIONS(1801), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(913), 2, sym_comment, sym_include, - [45294] = 5, + [45298] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - anon_sym_DOT, ACTIONS(1967), 1, + anon_sym_DOT, + ACTIONS(1995), 1, aux_sym__function_terminator_token1, STATE(914), 2, sym_comment, sym_include, - [45311] = 5, - ACTIONS(311), 1, + [45315] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1969), 1, - anon_sym_DQUOTE, - STATE(766), 1, - sym_double_quoted_string, + ACTIONS(1997), 1, + sym_identifier, + STATE(340), 1, + sym_function_call, STATE(915), 2, sym_comment, sym_include, - [45328] = 5, + [45332] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, - anon_sym_DOT, - ACTIONS(1971), 1, - aux_sym__case_terminator_token1, + ACTIONS(1999), 1, + anon_sym_DQUOTE, + STATE(784), 1, + sym_double_quoted_string, STATE(916), 2, sym_comment, sym_include, - [45345] = 5, + [45349] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1973), 1, + ACTIONS(2001), 1, sym_identifier, - ACTIONS(1975), 1, + ACTIONS(2003), 1, aux_sym_input_expression_token2, STATE(917), 2, sym_comment, sym_include, - [45362] = 5, + [45366] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, - aux_sym_if_do_statement_token1, - ACTIONS(1979), 1, - aux_sym_if_do_statement_token3, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(516), 1, + sym__block_terminator, STATE(918), 2, sym_comment, sym_include, - [45379] = 5, + [45383] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, + ACTIONS(1907), 1, aux_sym__block_terminator_token1, - STATE(494), 1, + STATE(508), 1, sym__block_terminator, STATE(919), 2, sym_comment, sym_include, - [45396] = 5, + [45400] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1981), 1, - aux_sym_do_statement_token1, - ACTIONS(1983), 1, - aux_sym_input_close_statement_token2, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(412), 1, + sym__block_terminator, STATE(920), 2, sym_comment, sym_include, - [45413] = 5, + [45417] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - aux_sym__block_terminator_token1, - STATE(497), 1, - sym__block_terminator, + ACTIONS(2005), 1, + sym__terminator, + ACTIONS(2007), 1, + aux_sym_catch_statement_token1, STATE(921), 2, sym_comment, sym_include, - [45430] = 5, + [45434] = 5, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1985), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(630), 1, - sym_qualified_name, + ACTIONS(2011), 1, + anon_sym_COLON, STATE(922), 2, sym_comment, sym_include, - [45447] = 5, + [45451] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1987), 1, + ACTIONS(1907), 1, aux_sym__block_terminator_token1, - STATE(370), 1, + STATE(543), 1, sym__block_terminator, STATE(923), 2, sym_comment, sym_include, - [45464] = 5, + [45468] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - aux_sym__block_terminator_token1, - STATE(496), 1, - sym__block_terminator, + ACTIONS(2013), 1, + sym__terminator, + ACTIONS(2015), 1, + aux_sym_catch_statement_token1, STATE(924), 2, sym_comment, sym_include, - [45481] = 5, + [45485] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, + ACTIONS(2017), 1, aux_sym__block_terminator_token1, - STATE(466), 1, + STATE(367), 1, sym__block_terminator, STATE(925), 2, sym_comment, sym_include, - [45498] = 5, + [45502] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - aux_sym_procedure_parameter_definition_token3, - ACTIONS(1991), 1, - aux_sym_function_statement_token1, + ACTIONS(1907), 1, + aux_sym__block_terminator_token1, + STATE(540), 1, + sym__block_terminator, STATE(926), 2, sym_comment, sym_include, - [45515] = 5, + [45519] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, - sym__terminator, - ACTIONS(1995), 1, - aux_sym_class_statement_token1, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(826), 1, + sym__block_terminator, STATE(927), 2, sym_comment, sym_include, - [45532] = 5, + [45536] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1997), 1, - sym__terminator, - ACTIONS(1999), 1, - aux_sym_class_statement_token1, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(825), 1, + sym__block_terminator, STATE(928), 2, sym_comment, sym_include, - [45549] = 5, - ACTIONS(3), 1, + [45553] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2001), 1, - sym_identifier, - ACTIONS(2003), 1, - aux_sym_input_expression_token2, + ACTIONS(2019), 1, + sym__terminator, + ACTIONS(2021), 1, + aux_sym_class_statement_token1, STATE(929), 2, sym_comment, sym_include, - [45566] = 5, + [45570] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2005), 1, - sym__terminator, - ACTIONS(2007), 1, - aux_sym_catch_statement_token1, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(422), 1, + sym__block_terminator, STATE(930), 2, sym_comment, sym_include, - [45583] = 5, - ACTIONS(3), 1, + [45587] = 5, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1781), 1, - anon_sym_RPAREN, - ACTIONS(2009), 1, - anon_sym_, + ACTIONS(2023), 1, + sym__terminator, + ACTIONS(2025), 1, + aux_sym_class_statement_token1, STATE(931), 2, sym_comment, sym_include, - [45600] = 5, + [45604] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, - anon_sym_DOT, - ACTIONS(2011), 1, - aux_sym__procedure_terminator_token1, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(797), 1, + sym__block_terminator, STATE(932), 2, sym_comment, sym_include, - [45617] = 5, + [45621] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, - aux_sym__block_terminator_token1, - STATE(478), 1, - sym__block_terminator, + ACTIONS(2027), 1, + sym__terminator, + ACTIONS(2029), 1, + aux_sym_catch_statement_token1, STATE(933), 2, sym_comment, sym_include, - [45634] = 4, + [45638] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2013), 2, - sym__terminator, - anon_sym_COLON, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(801), 1, + sym__block_terminator, STATE(934), 2, sym_comment, sym_include, - [45649] = 5, + [45655] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, + ACTIONS(2031), 1, sym__terminator, - ACTIONS(2017), 1, - aux_sym_catch_statement_token1, + ACTIONS(2033), 1, + aux_sym_class_statement_token1, STATE(935), 2, sym_comment, sym_include, - [45666] = 5, + [45672] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2019), 1, + ACTIONS(2035), 1, sym__terminator, - ACTIONS(2021), 1, - aux_sym_catch_statement_token1, + ACTIONS(2037), 1, + aux_sym_class_statement_token1, STATE(936), 2, sym_comment, sym_include, - [45683] = 5, + [45689] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1907), 1, aux_sym__block_terminator_token1, - STATE(462), 1, + STATE(520), 1, sym__block_terminator, STATE(937), 2, sym_comment, sym_include, - [45700] = 5, - ACTIONS(3), 1, + [45706] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, - sym_identifier, - STATE(190), 1, - sym_function_call, + ACTIONS(2039), 2, + sym__terminator, + anon_sym_COLON, STATE(938), 2, sym_comment, sym_include, - [45717] = 4, + [45721] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2025), 2, + ACTIONS(2041), 1, sym__terminator, - anon_sym_COLON, + ACTIONS(2043), 1, + aux_sym_class_statement_token1, STATE(939), 2, sym_comment, sym_include, - [45732] = 5, + [45738] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, + ACTIONS(2045), 2, sym__terminator, - ACTIONS(2029), 1, - aux_sym_catch_statement_token1, + anon_sym_COLON, STATE(940), 2, sym_comment, sym_include, - [45749] = 5, + [45753] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1975), 1, aux_sym__block_terminator_token1, - STATE(457), 1, + STATE(810), 1, sym__block_terminator, STATE(941), 2, sym_comment, sym_include, - [45766] = 5, - ACTIONS(311), 1, + [45770] = 5, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1987), 1, - aux_sym__block_terminator_token1, - STATE(397), 1, - sym__block_terminator, + ACTIONS(2047), 1, + sym_identifier, + STATE(347), 1, + sym_qualified_name, STATE(942), 2, sym_comment, sym_include, - [45783] = 5, + [45787] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2031), 1, - aux_sym_if_do_statement_token1, - ACTIONS(2033), 1, - aux_sym_if_do_statement_token3, + ACTIONS(1975), 1, + aux_sym__block_terminator_token1, + STATE(833), 1, + sym__block_terminator, STATE(943), 2, sym_comment, sym_include, - [45800] = 5, + [45804] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1987), 1, - aux_sym__block_terminator_token1, - STATE(388), 1, - sym__block_terminator, + ACTIONS(2049), 1, + sym__terminator, + ACTIONS(2051), 1, + aux_sym_catch_statement_token1, STATE(944), 2, sym_comment, sym_include, - [45817] = 5, + [45821] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2035), 1, + ACTIONS(2053), 1, sym__terminator, - ACTIONS(2037), 1, - aux_sym_class_statement_token1, + ACTIONS(2055), 1, + aux_sym_catch_statement_token1, STATE(945), 2, sym_comment, sym_include, - [45834] = 5, + [45838] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2039), 1, - sym__terminator, - ACTIONS(2041), 1, - aux_sym_class_statement_token1, + ACTIONS(1907), 1, + aux_sym__block_terminator_token1, + STATE(498), 1, + sym__block_terminator, STATE(946), 2, sym_comment, sym_include, - [45851] = 5, + [45855] = 5, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1981), 1, - aux_sym_do_statement_token1, - ACTIONS(2043), 1, - aux_sym_input_close_statement_token2, + ACTIONS(2057), 1, + aux_sym_if_do_statement_token1, + ACTIONS(2059), 1, + aux_sym_if_do_statement_token3, STATE(947), 2, sym_comment, sym_include, - [45868] = 5, - ACTIONS(3), 1, + [45872] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(904), 1, - anon_sym_RPAREN, - ACTIONS(2045), 1, - anon_sym_, + ACTIONS(2061), 2, + sym__terminator, + anon_sym_COLON, STATE(948), 2, sym_comment, sym_include, - [45885] = 5, - ACTIONS(3), 1, + [45887] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, - sym_identifier, - ACTIONS(2049), 1, + ACTIONS(2063), 2, + sym__terminator, anon_sym_COLON, STATE(949), 2, sym_comment, @@ -48616,10 +48623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - anon_sym_DOT, - ACTIONS(2051), 1, - aux_sym__case_terminator_token1, + ACTIONS(2065), 1, + sym__terminator, + ACTIONS(2067), 1, + aux_sym_class_statement_token1, STATE(950), 2, sym_comment, sym_include, @@ -48628,10 +48635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2053), 1, + ACTIONS(2069), 1, sym__terminator, - ACTIONS(2055), 1, - aux_sym_finally_statement_token1, + ACTIONS(2071), 1, + aux_sym_catch_statement_token1, STATE(951), 2, sym_comment, sym_include, @@ -48640,9 +48647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, + ACTIONS(1907), 1, aux_sym__block_terminator_token1, - STATE(419), 1, + STATE(493), 1, sym__block_terminator, STATE(952), 2, sym_comment, @@ -48652,34 +48659,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2057), 1, - sym__terminator, - ACTIONS(2059), 1, - aux_sym_finally_statement_token1, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(465), 1, + sym__block_terminator, STATE(953), 2, sym_comment, sym_include, [45970] = 5, - ACTIONS(3), 1, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, - sym_identifier, - STATE(1106), 1, - sym_qualified_name, + ACTIONS(2073), 1, + sym__terminator, + ACTIONS(2075), 1, + aux_sym_class_statement_token1, STATE(954), 2, sym_comment, sym_include, [45987] = 5, - ACTIONS(3), 1, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2063), 1, - sym_identifier, - STATE(202), 1, - sym_qualified_name, + ACTIONS(1935), 1, + aux_sym__block_terminator_token1, + STATE(369), 1, + sym__block_terminator, STATE(955), 2, sym_comment, sym_include, @@ -48688,10 +48695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2065), 1, - sym__terminator, - ACTIONS(2067), 1, - aux_sym_class_statement_token1, + ACTIONS(2017), 1, + aux_sym__block_terminator_token1, + STATE(399), 1, + sym__block_terminator, STATE(956), 2, sym_comment, sym_include, @@ -48700,34 +48707,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2069), 1, - sym__terminator, - ACTIONS(2071), 1, - aux_sym_catch_statement_token1, + ACTIONS(1897), 1, + aux_sym__block_terminator_token1, + STATE(490), 1, + sym__block_terminator, STATE(957), 2, sym_comment, sym_include, [46038] = 5, - ACTIONS(3), 1, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, - sym_identifier, - ACTIONS(2075), 1, - anon_sym_COLON, + ACTIONS(2017), 1, + aux_sym__block_terminator_token1, + STATE(381), 1, + sym__block_terminator, STATE(958), 2, sym_comment, sym_include, [46055] = 5, - ACTIONS(311), 1, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2077), 1, - sym__terminator, - ACTIONS(2079), 1, - aux_sym_class_statement_token1, + sym_identifier, + STATE(279), 1, + sym_function_call, STATE(959), 2, sym_comment, sym_include, @@ -48736,46 +48743,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1847), 1, + ACTIONS(1897), 1, aux_sym__block_terminator_token1, - STATE(577), 1, + STATE(460), 1, sym__block_terminator, STATE(960), 2, sym_comment, sym_include, [46089] = 5, - ACTIONS(311), 1, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - aux_sym__block_terminator_token1, - STATE(592), 1, - sym__block_terminator, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2081), 1, + anon_sym_COLON, STATE(961), 2, sym_comment, sym_include, [46106] = 5, - ACTIONS(311), 1, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2081), 1, - sym__terminator, + ACTIONS(1770), 1, + anon_sym_RPAREN, ACTIONS(2083), 1, - aux_sym_class_statement_token1, + anon_sym_, STATE(962), 2, sym_comment, sym_include, [46123] = 5, - ACTIONS(311), 1, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2085), 1, - sym__terminator, + sym_identifier, ACTIONS(2087), 1, - aux_sym_catch_statement_token1, + aux_sym_input_expression_token2, STATE(963), 2, sym_comment, sym_include, @@ -48784,346 +48791,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1867), 1, - aux_sym__block_terminator_token1, - STATE(843), 1, - sym__block_terminator, + ACTIONS(2089), 1, + sym__terminator, + ACTIONS(2091), 1, + aux_sym_catch_statement_token1, STATE(964), 2, sym_comment, sym_include, - [46157] = 5, - ACTIONS(3), 1, + [46157] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2089), 1, - sym_identifier, - STATE(348), 1, - sym_qualified_name, + ACTIONS(2093), 1, + sym__terminator, STATE(965), 2, sym_comment, sym_include, - [46174] = 4, + [46171] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2091), 1, - anon_sym_EQ, + ACTIONS(2095), 1, + anon_sym_COLON, STATE(966), 2, sym_comment, sym_include, - [46188] = 4, + [46185] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2093), 1, - aux_sym__block_terminator_token1, + ACTIONS(2069), 1, + sym__terminator, STATE(967), 2, sym_comment, sym_include, - [46202] = 4, + [46199] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2095), 1, - sym__terminator, + ACTIONS(2097), 1, + anon_sym_COLON, STATE(968), 2, sym_comment, sym_include, - [46216] = 4, + [46213] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2097), 1, + ACTIONS(2099), 1, sym__terminator, STATE(969), 2, sym_comment, sym_include, - [46230] = 4, + [46227] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2099), 1, + ACTIONS(2101), 1, sym__terminator, STATE(970), 2, sym_comment, sym_include, - [46244] = 4, - ACTIONS(311), 1, + [46241] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2101), 1, - sym__terminator, + ACTIONS(2103), 1, + sym_identifier, STATE(971), 2, sym_comment, sym_include, - [46258] = 4, + [46255] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2103), 1, + ACTIONS(2105), 1, sym_identifier, STATE(972), 2, sym_comment, sym_include, - [46272] = 4, + [46269] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2107), 1, sym__terminator, STATE(973), 2, sym_comment, sym_include, - [46286] = 4, + [46283] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2107), 1, - sym__terminator, + ACTIONS(2109), 1, + aux_sym__block_terminator_token1, STATE(974), 2, sym_comment, sym_include, - [46300] = 4, + [46297] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, - sym__terminator, + ACTIONS(2111), 1, + aux_sym__block_terminator_token1, STATE(975), 2, sym_comment, sym_include, - [46314] = 4, + [46311] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - sym__terminator, + ACTIONS(2113), 1, + anon_sym_COLON, STATE(976), 2, sym_comment, sym_include, - [46328] = 4, + [46325] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2111), 1, + ACTIONS(2115), 1, sym__terminator, STATE(977), 2, sym_comment, sym_include, - [46342] = 4, - ACTIONS(3), 1, + [46339] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, - sym_identifier, + ACTIONS(2117), 1, + sym__terminator, STATE(978), 2, sym_comment, sym_include, - [46356] = 4, - ACTIONS(3), 1, + [46353] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2115), 1, - sym_identifier, + ACTIONS(2119), 1, + sym__terminator, STATE(979), 2, sym_comment, sym_include, - [46370] = 4, + [46367] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2117), 1, - anon_sym_RPAREN, + ACTIONS(2121), 1, + sym__terminator, STATE(980), 2, sym_comment, sym_include, - [46384] = 4, - ACTIONS(3), 1, + [46381] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2119), 1, - sym_identifier, + ACTIONS(2123), 1, + sym__terminator, STATE(981), 2, sym_comment, sym_include, - [46398] = 4, - ACTIONS(311), 1, + [46395] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, - anon_sym_COLON, + ACTIONS(2125), 1, + sym_identifier, STATE(982), 2, sym_comment, sym_include, - [46412] = 4, - ACTIONS(311), 1, + [46409] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2123), 1, - anon_sym_RPAREN, + ACTIONS(2127), 1, + sym_identifier, STATE(983), 2, sym_comment, sym_include, - [46426] = 4, - ACTIONS(3), 1, + [46423] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2125), 1, - sym_identifier, + ACTIONS(1392), 1, + anon_sym_COLON, STATE(984), 2, sym_comment, sym_include, - [46440] = 4, - ACTIONS(311), 1, + [46437] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2127), 1, - sym__terminator, + ACTIONS(2129), 1, + sym_identifier, STATE(985), 2, sym_comment, sym_include, - [46454] = 4, + [46451] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2129), 1, - anon_sym_DOT, + ACTIONS(2131), 1, + anon_sym_RPAREN, STATE(986), 2, sym_comment, sym_include, - [46468] = 4, + [46465] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2131), 1, - sym__terminator, + ACTIONS(2133), 1, + anon_sym_LPAREN, STATE(987), 2, sym_comment, sym_include, - [46482] = 4, - ACTIONS(311), 1, + [46479] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, - sym__terminator, + ACTIONS(2135), 1, + sym_identifier, STATE(988), 2, sym_comment, sym_include, - [46496] = 4, + [46493] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2133), 1, - aux_sym_variable_definition_token5, + ACTIONS(2137), 1, + anon_sym_DOT, STATE(989), 2, sym_comment, sym_include, - [46510] = 4, - ACTIONS(3), 1, + [46507] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2135), 1, - sym_identifier, + ACTIONS(2139), 1, + anon_sym_COLON, STATE(990), 2, sym_comment, sym_include, - [46524] = 4, + [46521] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2137), 1, + ACTIONS(2049), 1, sym__terminator, STATE(991), 2, sym_comment, sym_include, - [46538] = 4, + [46535] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2139), 1, + ACTIONS(2141), 1, sym__terminator, STATE(992), 2, sym_comment, sym_include, - [46552] = 4, + [46549] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2141), 1, + ACTIONS(2143), 1, sym__terminator, STATE(993), 2, sym_comment, sym_include, - [46566] = 4, - ACTIONS(3), 1, + [46563] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2143), 1, - sym_identifier, + ACTIONS(1806), 1, + anon_sym_COLON, STATE(994), 2, sym_comment, sym_include, - [46580] = 4, + [46577] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2145), 1, - sym__terminator, + aux_sym__block_terminator_token1, STATE(995), 2, sym_comment, sym_include, - [46594] = 4, - ACTIONS(3), 1, + [46591] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2147), 1, - sym_identifier, + sym__terminator, STATE(996), 2, sym_comment, sym_include, - [46608] = 4, + [46605] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2149), 1, - sym__terminator, + aux_sym__block_terminator_token1, STATE(997), 2, sym_comment, sym_include, - [46622] = 4, + [46619] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, @@ -49133,1197 +49138,1197 @@ static const uint16_t ts_small_parse_table[] = { STATE(998), 2, sym_comment, sym_include, - [46636] = 4, + [46633] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(2153), 1, sym__terminator, STATE(999), 2, sym_comment, sym_include, - [46650] = 4, + [46647] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2153), 1, - anon_sym_DOT, + ACTIONS(2155), 1, + aux_sym__block_terminator_token1, STATE(1000), 2, sym_comment, sym_include, - [46664] = 4, + [46661] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2155), 1, - aux_sym_do_statement_token1, + ACTIONS(2157), 1, + aux_sym_variable_definition_token5, STATE(1001), 2, sym_comment, sym_include, - [46678] = 4, + [46675] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2157), 1, + ACTIONS(2159), 1, sym__terminator, STATE(1002), 2, sym_comment, sym_include, - [46692] = 4, + [46689] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2159), 1, + ACTIONS(2161), 1, sym__terminator, STATE(1003), 2, sym_comment, sym_include, - [46706] = 4, + [46703] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2161), 1, - anon_sym_COLON, + ACTIONS(2031), 1, + sym__terminator, STATE(1004), 2, sym_comment, sym_include, - [46720] = 4, - ACTIONS(3), 1, + [46717] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2163), 1, - sym_identifier, + anon_sym_DOT, STATE(1005), 2, sym_comment, sym_include, - [46734] = 4, + [46731] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2165), 1, - anon_sym_EQ, + sym__terminator, STATE(1006), 2, sym_comment, sym_include, - [46748] = 4, + [46745] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1907), 1, + ACTIONS(2013), 1, sym__terminator, STATE(1007), 2, sym_comment, sym_include, - [46762] = 4, - ACTIONS(3), 1, + [46759] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2167), 1, - sym_identifier, + sym__terminator, STATE(1008), 2, sym_comment, sym_include, - [46776] = 4, - ACTIONS(3), 1, + [46773] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2169), 1, - sym_identifier, + ACTIONS(1382), 1, + anon_sym_COLON, STATE(1009), 2, sym_comment, sym_include, - [46790] = 4, + [46787] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2171), 1, + ACTIONS(2169), 1, sym__terminator, STATE(1010), 2, sym_comment, sym_include, - [46804] = 4, + [46801] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2173), 1, + ACTIONS(2171), 1, sym__terminator, STATE(1011), 2, sym_comment, sym_include, - [46818] = 4, + [46815] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2175), 1, + ACTIONS(2173), 1, sym__terminator, STATE(1012), 2, sym_comment, sym_include, - [46832] = 4, + [46829] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2177), 1, + ACTIONS(2175), 1, sym__terminator, STATE(1013), 2, sym_comment, sym_include, - [46846] = 4, + [46843] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2179), 1, - aux_sym_buffer_definition_token2, + ACTIONS(2177), 1, + sym__terminator, STATE(1014), 2, sym_comment, sym_include, - [46860] = 4, + [46857] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2181), 1, + ACTIONS(2179), 1, sym_identifier, STATE(1015), 2, sym_comment, sym_include, - [46874] = 4, - ACTIONS(3), 1, + [46871] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2183), 1, - sym_identifier, + ACTIONS(2181), 1, + aux_sym__block_terminator_token1, STATE(1016), 2, sym_comment, sym_include, - [46888] = 4, + [46885] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2185), 1, - aux_sym_procedure_parameter_definition_token4, + ACTIONS(2183), 1, + sym__terminator, STATE(1017), 2, sym_comment, sym_include, - [46902] = 4, - ACTIONS(311), 1, + [46899] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2187), 1, - sym__terminator, + ACTIONS(2185), 1, + sym_identifier, STATE(1018), 2, sym_comment, sym_include, - [46916] = 4, + [46913] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2189), 1, - anon_sym_RPAREN, + ACTIONS(2187), 1, + sym__terminator, STATE(1019), 2, sym_comment, sym_include, - [46930] = 4, + [46927] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2191), 1, + ACTIONS(1847), 1, sym__terminator, STATE(1020), 2, sym_comment, sym_include, - [46944] = 4, + [46941] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2193), 1, - anon_sym_DOT, + ACTIONS(2189), 1, + sym__terminator, STATE(1021), 2, sym_comment, sym_include, - [46958] = 4, + [46955] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2195), 1, - sym__terminator, + ACTIONS(2191), 1, + anon_sym_RPAREN, STATE(1022), 2, sym_comment, sym_include, - [46972] = 4, - ACTIONS(3), 1, + [46969] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, - sym_identifier, + ACTIONS(1828), 1, + anon_sym_COLON, STATE(1023), 2, sym_comment, sym_include, - [46986] = 4, - ACTIONS(3), 1, + [46983] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, - sym_identifier, + ACTIONS(2193), 1, + anon_sym_DOT, STATE(1024), 2, sym_comment, sym_include, - [47000] = 4, + [46997] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2201), 1, + ACTIONS(2195), 1, sym__terminator, STATE(1025), 2, sym_comment, sym_include, - [47014] = 4, + [47011] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, + ACTIONS(2197), 1, sym__terminator, STATE(1026), 2, sym_comment, sym_include, - [47028] = 4, + [47025] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, - sym__terminator, + ACTIONS(2199), 1, + aux_sym__block_terminator_token1, STATE(1027), 2, sym_comment, sym_include, - [47042] = 4, + [47039] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2207), 1, + ACTIONS(2201), 1, sym__terminator, STATE(1028), 2, sym_comment, sym_include, - [47056] = 4, + [47053] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2209), 1, - anon_sym_LPAREN, + ACTIONS(2203), 1, + sym__terminator, STATE(1029), 2, sym_comment, sym_include, - [47070] = 4, + [47067] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2211), 1, - anon_sym_RPAREN, + ACTIONS(1979), 1, + sym__terminator, STATE(1030), 2, sym_comment, sym_include, - [47084] = 4, + [47081] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2213), 1, - anon_sym_DOT, + ACTIONS(2205), 1, + aux_sym_sort_clause_token2, STATE(1031), 2, sym_comment, sym_include, - [47098] = 4, + [47095] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2215), 1, - sym_number_literal, + ACTIONS(2207), 1, + sym__terminator, STATE(1032), 2, sym_comment, sym_include, - [47112] = 4, + [47109] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2217), 1, - anon_sym_COLON, + ACTIONS(2209), 1, + anon_sym_RPAREN, STATE(1033), 2, sym_comment, sym_include, - [47126] = 4, + [47123] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2219), 1, - anon_sym_COLON, + ACTIONS(2211), 1, + anon_sym_DOT, STATE(1034), 2, sym_comment, sym_include, - [47140] = 4, + [47137] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1879), 1, - anon_sym_DOT, + ACTIONS(2213), 1, + sym__terminator, STATE(1035), 2, sym_comment, sym_include, - [47154] = 4, + [47151] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, - anon_sym_DOT, + ACTIONS(2215), 1, + anon_sym_COLON, STATE(1036), 2, sym_comment, sym_include, - [47168] = 4, - ACTIONS(3), 1, + [47165] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2221), 1, - sym_identifier, + ACTIONS(2217), 1, + anon_sym_DOT, STATE(1037), 2, sym_comment, sym_include, - [47182] = 4, + [47179] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2223), 1, - sym__terminator, + ACTIONS(2219), 1, + anon_sym_COLON, STATE(1038), 2, sym_comment, sym_include, - [47196] = 4, + [47193] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2225), 1, - anon_sym_COLON, + ACTIONS(2221), 1, + sym__terminator, STATE(1039), 2, sym_comment, sym_include, - [47210] = 4, - ACTIONS(311), 1, + [47207] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, - anon_sym_COLON, + ACTIONS(2223), 1, + sym_identifier, STATE(1040), 2, sym_comment, sym_include, - [47224] = 4, + [47221] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, - anon_sym_RPAREN, + ACTIONS(2225), 1, + anon_sym_COLON, STATE(1041), 2, sym_comment, sym_include, - [47238] = 4, - ACTIONS(3), 1, + [47235] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2231), 1, - aux_sym_comment_token1, + ACTIONS(1321), 1, + anon_sym_COLON, STATE(1042), 2, sym_comment, sym_include, - [47252] = 4, - ACTIONS(3), 1, + [47249] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2233), 1, - sym_identifier, + ACTIONS(2227), 1, + anon_sym_COLON, STATE(1043), 2, sym_comment, sym_include, - [47266] = 4, - ACTIONS(3), 1, + [47263] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2235), 1, - sym_identifier, + ACTIONS(1925), 1, + sym__terminator, STATE(1044), 2, sym_comment, sym_include, - [47280] = 4, - ACTIONS(3), 1, + [47277] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2237), 1, - sym_identifier, + ACTIONS(2229), 1, + sym__terminator, STATE(1045), 2, sym_comment, sym_include, - [47294] = 4, + [47291] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2239), 1, - sym__terminator, + ACTIONS(2231), 1, + anon_sym_COLON, STATE(1046), 2, sym_comment, sym_include, - [47308] = 4, - ACTIONS(311), 1, + [47305] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, - sym__terminator, + ACTIONS(2233), 1, + sym_identifier, STATE(1047), 2, sym_comment, sym_include, - [47322] = 4, + [47319] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2243), 1, - anon_sym_EQ, + ACTIONS(2235), 1, + sym__terminator, STATE(1048), 2, sym_comment, sym_include, - [47336] = 4, - ACTIONS(311), 1, + [47333] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2245), 1, - sym__terminator, + ACTIONS(2237), 1, + sym_identifier, STATE(1049), 2, sym_comment, sym_include, - [47350] = 4, - ACTIONS(311), 1, + [47347] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, - sym__terminator, + ACTIONS(2239), 1, + sym_identifier, STATE(1050), 2, sym_comment, sym_include, - [47364] = 4, + [47361] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2249), 1, + ACTIONS(2241), 1, sym__terminator, STATE(1051), 2, sym_comment, sym_include, - [47378] = 4, + [47375] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2251), 1, + ACTIONS(2243), 1, sym__terminator, STATE(1052), 2, sym_comment, sym_include, - [47392] = 4, + [47389] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2253), 1, - anon_sym_SLASH, + ACTIONS(2245), 1, + aux_sym_variable_definition_token5, STATE(1053), 2, sym_comment, sym_include, - [47406] = 4, + [47403] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2255), 1, + ACTIONS(2247), 1, sym__terminator, STATE(1054), 2, sym_comment, sym_include, - [47420] = 4, + [47417] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, - aux_sym__block_terminator_token1, + ACTIONS(2249), 1, + sym__terminator, STATE(1055), 2, sym_comment, sym_include, - [47434] = 4, + [47431] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2259), 1, - aux_sym__block_terminator_token1, + ACTIONS(2251), 1, + aux_sym_if_do_statement_token3, STATE(1056), 2, sym_comment, sym_include, - [47448] = 4, - ACTIONS(3), 1, + [47445] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2261), 1, - sym_identifier, + ACTIONS(2253), 1, + sym__terminator, STATE(1057), 2, sym_comment, sym_include, - [47462] = 4, - ACTIONS(3), 1, + [47459] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2263), 1, - sym_identifier, + ACTIONS(2255), 1, + aux_sym__block_terminator_token1, STATE(1058), 2, sym_comment, sym_include, - [47476] = 4, + [47473] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2265), 1, + ACTIONS(2257), 1, sym_identifier, STATE(1059), 2, sym_comment, sym_include, - [47490] = 4, + [47487] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2267), 1, + ACTIONS(2259), 1, sym_identifier, STATE(1060), 2, sym_comment, sym_include, - [47504] = 4, + [47501] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2269), 1, - sym__terminator, + ACTIONS(2261), 1, + anon_sym_COLON, STATE(1061), 2, sym_comment, sym_include, - [47518] = 4, - ACTIONS(311), 1, + [47515] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2271), 1, - sym__terminator, + ACTIONS(2263), 1, + sym_identifier, STATE(1062), 2, sym_comment, sym_include, - [47532] = 4, - ACTIONS(311), 1, + [47529] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1321), 1, - anon_sym_COLON, + ACTIONS(2265), 1, + sym_identifier, STATE(1063), 2, sym_comment, sym_include, - [47546] = 4, + [47543] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2273), 1, - aux_sym_variable_definition_token5, + ACTIONS(1939), 1, + sym__terminator, STATE(1064), 2, sym_comment, sym_include, - [47560] = 4, - ACTIONS(3), 1, + [47557] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2275), 1, - sym_identifier, + ACTIONS(2267), 1, + anon_sym_EQ, STATE(1065), 2, sym_comment, sym_include, - [47574] = 4, + [47571] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2277), 1, + ACTIONS(1317), 1, anon_sym_COLON, STATE(1066), 2, sym_comment, sym_include, - [47588] = 4, + [47585] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_COLON, + ACTIONS(2269), 1, + aux_sym__block_terminator_token1, STATE(1067), 2, sym_comment, sym_include, - [47602] = 4, + [47599] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2281), 1, - aux_sym_sort_clause_token2, + ACTIONS(2271), 1, + sym__terminator, STATE(1068), 2, sym_comment, sym_include, - [47616] = 4, + [47613] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2283), 1, - sym__terminator, + ACTIONS(2273), 1, + anon_sym_COLON, STATE(1069), 2, sym_comment, sym_include, - [47630] = 4, + [47627] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2285), 1, + ACTIONS(2275), 1, sym__terminator, STATE(1070), 2, sym_comment, sym_include, - [47644] = 4, + [47641] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1319), 1, - anon_sym_COLON, + ACTIONS(2277), 1, + sym__terminator, STATE(1071), 2, sym_comment, sym_include, - [47658] = 4, + [47655] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2287), 1, - anon_sym_COLON, + ACTIONS(2279), 1, + aux_sym__block_terminator_token1, STATE(1072), 2, sym_comment, sym_include, - [47672] = 4, + [47669] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2289), 1, - anon_sym_COLON, + ACTIONS(2281), 1, + sym__terminator, STATE(1073), 2, sym_comment, sym_include, - [47686] = 4, + [47683] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2291), 1, + ACTIONS(2283), 1, sym_identifier, STATE(1074), 2, sym_comment, sym_include, - [47700] = 4, + [47697] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1378), 1, - anon_sym_COLON, + ACTIONS(1921), 1, + anon_sym_DOT, STATE(1075), 2, sym_comment, sym_include, - [47714] = 4, - ACTIONS(311), 1, + [47711] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2293), 1, - sym__terminator, + ACTIONS(2285), 1, + sym_identifier, STATE(1076), 2, sym_comment, sym_include, - [47728] = 4, - ACTIONS(311), 1, + [47725] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2295), 1, - sym__terminator, + ACTIONS(2287), 1, + sym_identifier, STATE(1077), 2, sym_comment, sym_include, - [47742] = 4, + [47739] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2297), 1, - aux_sym__block_terminator_token1, + ACTIONS(1388), 1, + anon_sym_COLON, STATE(1078), 2, sym_comment, sym_include, - [47756] = 4, + [47753] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2299), 1, - aux_sym__block_terminator_token1, + ACTIONS(2289), 1, + anon_sym_COLON, STATE(1079), 2, sym_comment, sym_include, - [47770] = 4, + [47767] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2301), 1, + ACTIONS(2291), 1, sym__terminator, STATE(1080), 2, sym_comment, sym_include, - [47784] = 4, + [47781] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2303), 1, + ACTIONS(2293), 1, aux_sym__block_terminator_token1, STATE(1081), 2, sym_comment, sym_include, - [47798] = 4, + [47795] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1382), 1, - anon_sym_COLON, + ACTIONS(2295), 1, + aux_sym__block_terminator_token1, STATE(1082), 2, sym_comment, sym_include, - [47812] = 4, + [47809] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1744), 1, - anon_sym_COLON, + ACTIONS(1967), 1, + anon_sym_DOT, STATE(1083), 2, sym_comment, sym_include, - [47826] = 4, + [47823] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2053), 1, - sym__terminator, + ACTIONS(2297), 1, + sym_number_literal, STATE(1084), 2, sym_comment, sym_include, - [47840] = 4, + [47837] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2305), 1, - sym__terminator, + ACTIONS(1390), 1, + anon_sym_COLON, STATE(1085), 2, sym_comment, sym_include, - [47854] = 4, + [47851] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2307), 1, - aux_sym__block_terminator_token1, + ACTIONS(2299), 1, + sym__terminator, STATE(1086), 2, sym_comment, sym_include, - [47868] = 4, - ACTIONS(3), 1, + [47865] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2309), 1, - sym_identifier, + ACTIONS(2301), 1, + sym__terminator, STATE(1087), 2, sym_comment, sym_include, - [47882] = 4, + [47879] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2311), 1, - anon_sym_COLON, + ACTIONS(2303), 1, + aux_sym_buffer_definition_token2, STATE(1088), 2, sym_comment, sym_include, - [47896] = 4, - ACTIONS(3), 1, + [47893] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2313), 1, - sym_identifier, + ACTIONS(2305), 1, + aux_sym__block_terminator_token1, STATE(1089), 2, sym_comment, sym_include, - [47910] = 4, + [47907] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2315), 1, - aux_sym__block_terminator_token1, + ACTIONS(2307), 1, + anon_sym_EQ, STATE(1090), 2, sym_comment, sym_include, - [47924] = 4, + [47921] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2317), 1, + ACTIONS(2309), 1, anon_sym_COLON, STATE(1091), 2, sym_comment, sym_include, - [47938] = 4, - ACTIONS(311), 1, + [47935] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2319), 1, - anon_sym_COLON, + ACTIONS(2311), 1, + sym_identifier, STATE(1092), 2, sym_comment, sym_include, - [47952] = 4, + [47949] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2321), 1, - anon_sym_COLON, + ACTIONS(2313), 1, + aux_sym__block_terminator_token1, STATE(1093), 2, sym_comment, sym_include, - [47966] = 4, + [47963] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2323), 1, - ts_builtin_sym_end, + ACTIONS(2315), 1, + anon_sym_COLON, STATE(1094), 2, sym_comment, sym_include, - [47980] = 4, - ACTIONS(3), 1, + [47977] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, - sym_identifier, + ACTIONS(2317), 1, + anon_sym_COLON, STATE(1095), 2, sym_comment, sym_include, - [47994] = 4, + [47991] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, - anon_sym_LPAREN, + ACTIONS(2319), 1, + anon_sym_COLON, STATE(1096), 2, sym_comment, sym_include, - [48008] = 4, + [48005] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1376), 1, - anon_sym_COLON, + ACTIONS(2321), 1, + sym__terminator, STATE(1097), 2, sym_comment, sym_include, - [48022] = 4, - ACTIONS(311), 1, + [48019] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2329), 1, - anon_sym_COLON, + ACTIONS(2323), 1, + sym_identifier, STATE(1098), 2, sym_comment, sym_include, - [48036] = 4, + [48033] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, - sym_identifier, + ACTIONS(2325), 1, + aux_sym_comment_token1, STATE(1099), 2, sym_comment, sym_include, - [48050] = 4, - ACTIONS(311), 1, + [48047] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2333), 1, - anon_sym_DOT, + ACTIONS(2327), 1, + sym_identifier, STATE(1100), 2, sym_comment, sym_include, - [48064] = 4, + [48061] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1325), 1, - anon_sym_COLON, + ACTIONS(2329), 1, + anon_sym_RPAREN, STATE(1101), 2, sym_comment, sym_include, - [48078] = 4, - ACTIONS(311), 1, + [48075] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1937), 1, - sym__terminator, + ACTIONS(2331), 1, + sym_identifier, STATE(1102), 2, sym_comment, sym_include, - [48092] = 4, + [48089] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2335), 1, - aux_sym__block_terminator_token1, + ACTIONS(2333), 1, + sym__terminator, STATE(1103), 2, sym_comment, sym_include, - [48106] = 4, + [48103] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1384), 1, + ACTIONS(1319), 1, anon_sym_COLON, STATE(1104), 2, sym_comment, sym_include, - [48120] = 4, - ACTIONS(311), 1, + [48117] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2337), 1, - aux_sym__block_terminator_token1, + ACTIONS(2335), 1, + sym_identifier, STATE(1105), 2, sym_comment, sym_include, - [48134] = 4, + [48131] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1775), 1, + ACTIONS(2337), 1, anon_sym_COLON, STATE(1106), 2, sym_comment, sym_include, - [48148] = 4, + [48145] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1374), 1, + ACTIONS(1386), 1, anon_sym_COLON, STATE(1107), 2, sym_comment, sym_include, - [48162] = 4, - ACTIONS(311), 1, + [48159] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2339), 1, - sym__terminator, + sym_identifier, STATE(1108), 2, sym_comment, sym_include, - [48176] = 4, - ACTIONS(311), 1, + [48173] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2341), 1, - anon_sym_COLON, + sym_identifier, STATE(1109), 2, sym_comment, sym_include, - [48190] = 4, - ACTIONS(3), 1, + [48187] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2343), 1, - sym_identifier, + ACTIONS(1384), 1, + anon_sym_COLON, STATE(1110), 2, sym_comment, sym_include, - [48204] = 4, + [48201] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, - sym__terminator, + ACTIONS(2343), 1, + aux_sym_variable_definition_token5, STATE(1111), 2, sym_comment, sym_include, - [48218] = 4, + [48215] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1380), 1, + ACTIONS(2345), 1, anon_sym_COLON, STATE(1112), 2, sym_comment, sym_include, - [48232] = 4, + [48229] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2347), 1, - anon_sym_COLON, + sym__terminator, STATE(1113), 2, sym_comment, sym_include, - [48246] = 4, - ACTIONS(311), 1, + [48243] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2349), 1, - aux_sym_if_do_statement_token3, + sym_identifier, STATE(1114), 2, sym_comment, sym_include, - [48260] = 4, - ACTIONS(3), 1, + [48257] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2351), 1, - sym_identifier, + anon_sym_COLON, STATE(1115), 2, sym_comment, sym_include, - [48274] = 4, + [48271] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2353), 1, - anon_sym_COLON, + sym__terminator, STATE(1116), 2, sym_comment, sym_include, - [48288] = 4, + [48285] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2355), 1, - anon_sym_LPAREN, + sym__terminator, STATE(1117), 2, sym_comment, sym_include, - [48302] = 4, + [48299] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -50333,7 +50338,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1118), 2, sym_comment, sym_include, - [48316] = 4, + [48313] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -50343,27 +50348,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(1119), 2, sym_comment, sym_include, - [48330] = 4, - ACTIONS(3), 1, + [48327] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2361), 1, - sym_identifier, + anon_sym_COLON, STATE(1120), 2, sym_comment, sym_include, - [48344] = 4, + [48341] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2363), 1, - sym__terminator, + anon_sym_LPAREN, STATE(1121), 2, sym_comment, sym_include, - [48358] = 4, + [48355] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -50373,7 +50378,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1122), 2, sym_comment, sym_include, - [48372] = 4, + [48369] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -50383,37 +50388,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(1123), 2, sym_comment, sym_include, - [48386] = 4, - ACTIONS(311), 1, + [48383] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2369), 1, - sym__terminator, + sym_identifier, STATE(1124), 2, sym_comment, sym_include, - [48400] = 4, - ACTIONS(311), 1, + [48397] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2371), 1, - sym__terminator, + sym_identifier, STATE(1125), 2, sym_comment, sym_include, - [48414] = 4, - ACTIONS(311), 1, + [48411] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2373), 1, - anon_sym_COLON, + sym_identifier, STATE(1126), 2, sym_comment, sym_include, - [48428] = 4, + [48425] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, @@ -50423,444 +50428,444 @@ static const uint16_t ts_small_parse_table[] = { STATE(1127), 2, sym_comment, sym_include, - [48442] = 4, - ACTIONS(311), 1, + [48439] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1891), 1, - sym__terminator, + ACTIONS(2377), 1, + sym_identifier, STATE(1128), 2, sym_comment, sym_include, - [48456] = 4, + [48453] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2377), 1, - aux_sym_buffer_definition_token2, + ACTIONS(2379), 1, + sym__terminator, STATE(1129), 2, sym_comment, sym_include, - [48470] = 4, + [48467] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2379), 1, - sym_number_literal, + ACTIONS(2381), 1, + aux_sym_do_statement_token1, STATE(1130), 2, sym_comment, sym_include, - [48484] = 4, + [48481] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2381), 1, + ACTIONS(2383), 1, sym__terminator, STATE(1131), 2, sym_comment, sym_include, - [48498] = 4, + [48495] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_COLON, + ACTIONS(2385), 1, + aux_sym_buffer_definition_token2, STATE(1132), 2, sym_comment, sym_include, - [48512] = 4, - ACTIONS(3), 1, + [48509] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2385), 1, - sym_identifier, + ACTIONS(2387), 1, + sym_number_literal, STATE(1133), 2, sym_comment, sym_include, - [48526] = 4, + [48523] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2387), 1, - aux_sym__block_terminator_token1, + ACTIONS(2389), 1, + anon_sym_COLON, STATE(1134), 2, sym_comment, sym_include, - [48540] = 4, + [48537] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2389), 1, - aux_sym_variable_definition_token5, + ACTIONS(2391), 1, + anon_sym_EQ, STATE(1135), 2, sym_comment, sym_include, - [48554] = 4, - ACTIONS(311), 1, + [48551] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2085), 1, - sym__terminator, + ACTIONS(2393), 1, + sym_identifier, STATE(1136), 2, sym_comment, sym_include, - [48568] = 4, - ACTIONS(311), 1, + [48565] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(1800), 1, - anon_sym_COLON, + ACTIONS(2395), 1, + sym_identifier, STATE(1137), 2, sym_comment, sym_include, - [48582] = 4, + [48579] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, - sym__terminator, + ACTIONS(2397), 1, + aux_sym_variable_definition_token5, STATE(1138), 2, sym_comment, sym_include, - [48596] = 4, - ACTIONS(311), 1, + [48593] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2393), 1, - sym__terminator, + ACTIONS(2399), 1, + sym_identifier, STATE(1139), 2, sym_comment, sym_include, - [48610] = 4, + [48607] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(1790), 1, + ACTIONS(1781), 1, anon_sym_COLON, STATE(1140), 2, sym_comment, sym_include, - [48624] = 4, - ACTIONS(311), 1, + [48621] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, - ACTIONS(2395), 1, - aux_sym_variable_definition_token5, + ACTIONS(2401), 1, + sym_identifier, STATE(1141), 2, sym_comment, sym_include, - [48638] = 4, + [48635] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2397), 1, - aux_sym_if_do_statement_token3, + ACTIONS(2403), 1, + aux_sym_procedure_parameter_definition_token4, STATE(1142), 2, sym_comment, sym_include, - [48652] = 4, + [48649] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2399), 1, - anon_sym_LPAREN, + ACTIONS(1818), 1, + anon_sym_COLON, STATE(1143), 2, sym_comment, sym_include, - [48666] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(2401), 1, - sym_identifier, - STATE(1144), 2, - sym_comment, - sym_include, - [48680] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_STAR, - ACTIONS(5), 1, - anon_sym_LBRACE, - ACTIONS(2403), 1, - sym_identifier, - STATE(1145), 2, - sym_comment, - sym_include, - [48694] = 4, + [48663] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2405), 1, - anon_sym_COLON, - STATE(1146), 2, + sym__terminator, + STATE(1144), 2, sym_comment, sym_include, - [48708] = 4, - ACTIONS(3), 1, + [48677] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2407), 1, - sym_identifier, - STATE(1147), 2, + aux_sym_if_do_statement_token3, + STATE(1145), 2, sym_comment, sym_include, - [48722] = 4, - ACTIONS(3), 1, + [48691] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2409), 1, - sym_identifier, - STATE(1148), 2, + anon_sym_LPAREN, + STATE(1146), 2, sym_comment, sym_include, - [48736] = 4, + [48705] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2411), 1, sym_identifier, - STATE(1149), 2, + STATE(1147), 2, sym_comment, sym_include, - [48750] = 4, - ACTIONS(3), 1, + [48719] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2413), 1, - sym_identifier, - STATE(1150), 2, + sym__terminator, + STATE(1148), 2, sym_comment, sym_include, - [48764] = 4, + [48733] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2415), 1, sym_identifier, - STATE(1151), 2, + STATE(1149), 2, sym_comment, sym_include, - [48778] = 4, + [48747] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2417), 1, sym_identifier, - STATE(1152), 2, + STATE(1150), 2, sym_comment, sym_include, - [48792] = 4, + [48761] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2419), 1, - aux_sym_do_statement_token1, - STATE(1153), 2, + anon_sym_LPAREN, + STATE(1151), 2, sym_comment, sym_include, - [48806] = 4, + [48775] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2421), 1, - anon_sym_COLON, - STATE(1154), 2, + anon_sym_SLASH, + STATE(1152), 2, sym_comment, sym_include, - [48820] = 4, - ACTIONS(311), 1, + [48789] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2423), 1, - sym__terminator, - STATE(1155), 2, + sym_identifier, + STATE(1153), 2, sym_comment, sym_include, - [48834] = 4, + [48803] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2425), 1, sym_identifier, - STATE(1156), 2, + STATE(1154), 2, sym_comment, sym_include, - [48848] = 4, + [48817] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2427), 1, - aux_sym__block_terminator_token1, - STATE(1157), 2, + aux_sym_do_statement_token1, + STATE(1155), 2, sym_comment, sym_include, - [48862] = 4, + [48831] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2429), 1, - anon_sym_LPAREN, - STATE(1158), 2, + sym__terminator, + STATE(1156), 2, sym_comment, sym_include, - [48876] = 4, + [48845] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2431), 1, - aux_sym__block_terminator_token1, - STATE(1159), 2, + sym__terminator, + STATE(1157), 2, sym_comment, sym_include, - [48890] = 4, - ACTIONS(311), 1, + [48859] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2433), 1, - anon_sym_COLON, - STATE(1160), 2, + sym_identifier, + STATE(1158), 2, sym_comment, sym_include, - [48904] = 4, + [48873] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2435), 1, - sym__terminator, - STATE(1161), 2, + ts_builtin_sym_end, + STATE(1159), 2, sym_comment, sym_include, - [48918] = 4, + [48887] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2437), 1, - sym__terminator, - STATE(1162), 2, + anon_sym_LPAREN, + STATE(1160), 2, sym_comment, sym_include, - [48932] = 4, + [48901] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2439), 1, - sym__terminator, - STATE(1163), 2, + anon_sym_RPAREN, + STATE(1161), 2, sym_comment, sym_include, - [48946] = 4, + [48915] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, ACTIONS(2441), 1, - sym__terminator, - STATE(1164), 2, + anon_sym_COLON, + STATE(1162), 2, sym_comment, sym_include, - [48960] = 4, - ACTIONS(311), 1, + [48929] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2443), 1, - aux_sym_procedure_parameter_definition_token4, - STATE(1165), 2, + sym_identifier, + STATE(1163), 2, sym_comment, sym_include, - [48974] = 4, - ACTIONS(311), 1, + [48943] = 4, + ACTIONS(3), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2445), 1, - aux_sym_variable_definition_token5, - STATE(1166), 2, + sym_identifier, + STATE(1164), 2, sym_comment, sym_include, - [48988] = 4, + [48957] = 4, ACTIONS(3), 1, anon_sym_SLASH_STAR, ACTIONS(5), 1, anon_sym_LBRACE, ACTIONS(2447), 1, sym_identifier, + STATE(1165), 2, + sym_comment, + sym_include, + [48971] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(5), 1, + anon_sym_LBRACE, + ACTIONS(2449), 1, + sym_identifier, + STATE(1166), 2, + sym_comment, + sym_include, + [48985] = 4, + ACTIONS(311), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + aux_sym_procedure_parameter_definition_token4, STATE(1167), 2, sym_comment, sym_include, - [49002] = 4, + [48999] = 4, ACTIONS(311), 1, anon_sym_SLASH_STAR, ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2449), 1, - sym_file_name, + ACTIONS(2453), 1, + aux_sym_variable_definition_token5, STATE(1168), 2, sym_comment, sym_include, - [49016] = 4, - ACTIONS(3), 1, + [49013] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - sym_identifier, + ACTIONS(2455), 1, + anon_sym_COLON, STATE(1169), 2, sym_comment, sym_include, - [49030] = 4, - ACTIONS(3), 1, + [49027] = 4, + ACTIONS(311), 1, anon_sym_SLASH_STAR, - ACTIONS(5), 1, + ACTIONS(313), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, - sym_identifier, + ACTIONS(2457), 1, + sym_file_name, STATE(1170), 2, sym_comment, sym_include, - [49044] = 1, - ACTIONS(2455), 1, + [49041] = 1, + ACTIONS(2459), 1, ts_builtin_sym_end, - [49048] = 1, - ACTIONS(2457), 1, + [49045] = 1, + ACTIONS(2461), 1, ts_builtin_sym_end, - [49052] = 1, - ACTIONS(2459), 1, + [49049] = 1, + ACTIONS(2463), 1, ts_builtin_sym_end, }; @@ -50872,24 +50877,24 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 512, [SMALL_STATE(7)] = 640, [SMALL_STATE(8)] = 768, - [SMALL_STATE(9)] = 897, + [SMALL_STATE(9)] = 899, [SMALL_STATE(10)] = 1028, [SMALL_STATE(11)] = 1157, - [SMALL_STATE(12)] = 1288, + [SMALL_STATE(12)] = 1286, [SMALL_STATE(13)] = 1417, - [SMALL_STATE(14)] = 1546, - [SMALL_STATE(15)] = 1677, - [SMALL_STATE(16)] = 1808, - [SMALL_STATE(17)] = 1939, + [SMALL_STATE(14)] = 1548, + [SMALL_STATE(15)] = 1679, + [SMALL_STATE(16)] = 1810, + [SMALL_STATE(17)] = 1941, [SMALL_STATE(18)] = 2070, [SMALL_STATE(19)] = 2198, [SMALL_STATE(20)] = 2326, [SMALL_STATE(21)] = 2454, [SMALL_STATE(22)] = 2582, - [SMALL_STATE(23)] = 2710, - [SMALL_STATE(24)] = 2838, - [SMALL_STATE(25)] = 2966, - [SMALL_STATE(26)] = 3094, + [SMALL_STATE(23)] = 2698, + [SMALL_STATE(24)] = 2826, + [SMALL_STATE(25)] = 2954, + [SMALL_STATE(26)] = 3082, [SMALL_STATE(27)] = 3210, [SMALL_STATE(28)] = 3338, [SMALL_STATE(29)] = 3466, @@ -50906,12 +50911,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(40)] = 4874, [SMALL_STATE(41)] = 5002, [SMALL_STATE(42)] = 5130, - [SMALL_STATE(43)] = 5246, - [SMALL_STATE(44)] = 5374, - [SMALL_STATE(45)] = 5502, - [SMALL_STATE(46)] = 5630, - [SMALL_STATE(47)] = 5758, - [SMALL_STATE(48)] = 5886, + [SMALL_STATE(43)] = 5258, + [SMALL_STATE(44)] = 5386, + [SMALL_STATE(45)] = 5514, + [SMALL_STATE(46)] = 5642, + [SMALL_STATE(47)] = 5770, + [SMALL_STATE(48)] = 5898, [SMALL_STATE(49)] = 6014, [SMALL_STATE(50)] = 6142, [SMALL_STATE(51)] = 6270, @@ -50927,11 +50932,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(61)] = 7520, [SMALL_STATE(62)] = 7645, [SMALL_STATE(63)] = 7770, - [SMALL_STATE(64)] = 7892, - [SMALL_STATE(65)] = 8012, - [SMALL_STATE(66)] = 8134, + [SMALL_STATE(64)] = 7890, + [SMALL_STATE(65)] = 8010, + [SMALL_STATE(66)] = 8132, [SMALL_STATE(67)] = 8254, - [SMALL_STATE(68)] = 8321, + [SMALL_STATE(68)] = 8323, [SMALL_STATE(69)] = 8390, [SMALL_STATE(70)] = 8454, [SMALL_STATE(71)] = 8517, @@ -50939,22 +50944,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(73)] = 8643, [SMALL_STATE(74)] = 8706, [SMALL_STATE(75)] = 8769, - [SMALL_STATE(76)] = 8839, - [SMALL_STATE(77)] = 8907, - [SMALL_STATE(78)] = 8983, - [SMALL_STATE(79)] = 9059, - [SMALL_STATE(80)] = 9133, - [SMALL_STATE(81)] = 9209, - [SMALL_STATE(82)] = 9279, - [SMALL_STATE(83)] = 9379, - [SMALL_STATE(84)] = 9483, - [SMALL_STATE(85)] = 9553, - [SMALL_STATE(86)] = 9629, + [SMALL_STATE(76)] = 8873, + [SMALL_STATE(77)] = 8977, + [SMALL_STATE(78)] = 9053, + [SMALL_STATE(79)] = 9127, + [SMALL_STATE(80)] = 9197, + [SMALL_STATE(81)] = 9273, + [SMALL_STATE(82)] = 9343, + [SMALL_STATE(83)] = 9413, + [SMALL_STATE(84)] = 9481, + [SMALL_STATE(85)] = 9557, + [SMALL_STATE(86)] = 9633, [SMALL_STATE(87)] = 9733, - [SMALL_STATE(88)] = 9805, + [SMALL_STATE(88)] = 9809, [SMALL_STATE(89)] = 9881, [SMALL_STATE(90)] = 9957, - [SMALL_STATE(91)] = 10033, + [SMALL_STATE(91)] = 10061, [SMALL_STATE(92)] = 10137, [SMALL_STATE(93)] = 10241, [SMALL_STATE(94)] = 10345, @@ -50963,137 +50968,137 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(97)] = 10648, [SMALL_STATE(98)] = 10749, [SMALL_STATE(99)] = 10850, - [SMALL_STATE(100)] = 10949, - [SMALL_STATE(101)] = 11050, - [SMALL_STATE(102)] = 11151, - [SMALL_STATE(103)] = 11252, - [SMALL_STATE(104)] = 11353, + [SMALL_STATE(100)] = 10951, + [SMALL_STATE(101)] = 11052, + [SMALL_STATE(102)] = 11153, + [SMALL_STATE(103)] = 11254, + [SMALL_STATE(104)] = 11355, [SMALL_STATE(105)] = 11454, [SMALL_STATE(106)] = 11555, - [SMALL_STATE(107)] = 11617, - [SMALL_STATE(108)] = 11679, - [SMALL_STATE(109)] = 11741, - [SMALL_STATE(110)] = 11839, - [SMALL_STATE(111)] = 11899, - [SMALL_STATE(112)] = 11959, - [SMALL_STATE(113)] = 12057, - [SMALL_STATE(114)] = 12119, - [SMALL_STATE(115)] = 12217, - [SMALL_STATE(116)] = 12315, + [SMALL_STATE(107)] = 11615, + [SMALL_STATE(108)] = 11677, + [SMALL_STATE(109)] = 11739, + [SMALL_STATE(110)] = 11837, + [SMALL_STATE(111)] = 11935, + [SMALL_STATE(112)] = 11997, + [SMALL_STATE(113)] = 12059, + [SMALL_STATE(114)] = 12157, + [SMALL_STATE(115)] = 12255, + [SMALL_STATE(116)] = 12353, [SMALL_STATE(117)] = 12413, - [SMALL_STATE(118)] = 12472, - [SMALL_STATE(119)] = 12535, - [SMALL_STATE(120)] = 12630, - [SMALL_STATE(121)] = 12725, - [SMALL_STATE(122)] = 12820, - [SMALL_STATE(123)] = 12915, - [SMALL_STATE(124)] = 13010, - [SMALL_STATE(125)] = 13105, - [SMALL_STATE(126)] = 13200, - [SMALL_STATE(127)] = 13295, - [SMALL_STATE(128)] = 13390, - [SMALL_STATE(129)] = 13485, - [SMALL_STATE(130)] = 13580, - [SMALL_STATE(131)] = 13675, - [SMALL_STATE(132)] = 13770, - [SMALL_STATE(133)] = 13833, - [SMALL_STATE(134)] = 13928, - [SMALL_STATE(135)] = 14023, - [SMALL_STATE(136)] = 14118, - [SMALL_STATE(137)] = 14213, - [SMALL_STATE(138)] = 14308, - [SMALL_STATE(139)] = 14403, - [SMALL_STATE(140)] = 14498, - [SMALL_STATE(141)] = 14593, - [SMALL_STATE(142)] = 14688, - [SMALL_STATE(143)] = 14783, - [SMALL_STATE(144)] = 14878, - [SMALL_STATE(145)] = 14973, - [SMALL_STATE(146)] = 15068, - [SMALL_STATE(147)] = 15163, - [SMALL_STATE(148)] = 15258, - [SMALL_STATE(149)] = 15353, - [SMALL_STATE(150)] = 15448, - [SMALL_STATE(151)] = 15543, - [SMALL_STATE(152)] = 15638, - [SMALL_STATE(153)] = 15733, - [SMALL_STATE(154)] = 15828, - [SMALL_STATE(155)] = 15885, - [SMALL_STATE(156)] = 15980, - [SMALL_STATE(157)] = 16075, - [SMALL_STATE(158)] = 16170, - [SMALL_STATE(159)] = 16265, - [SMALL_STATE(160)] = 16360, - [SMALL_STATE(161)] = 16455, - [SMALL_STATE(162)] = 16550, - [SMALL_STATE(163)] = 16645, - [SMALL_STATE(164)] = 16740, - [SMALL_STATE(165)] = 16835, - [SMALL_STATE(166)] = 16930, - [SMALL_STATE(167)] = 17025, - [SMALL_STATE(168)] = 17120, - [SMALL_STATE(169)] = 17215, - [SMALL_STATE(170)] = 17310, - [SMALL_STATE(171)] = 17405, - [SMALL_STATE(172)] = 17500, - [SMALL_STATE(173)] = 17595, - [SMALL_STATE(174)] = 17690, - [SMALL_STATE(175)] = 17785, - [SMALL_STATE(176)] = 17880, - [SMALL_STATE(177)] = 17975, - [SMALL_STATE(178)] = 18070, - [SMALL_STATE(179)] = 18165, - [SMALL_STATE(180)] = 18222, - [SMALL_STATE(181)] = 18317, - [SMALL_STATE(182)] = 18412, - [SMALL_STATE(183)] = 18507, - [SMALL_STATE(184)] = 18602, - [SMALL_STATE(185)] = 18697, - [SMALL_STATE(186)] = 18792, - [SMALL_STATE(187)] = 18887, - [SMALL_STATE(188)] = 18982, - [SMALL_STATE(189)] = 19077, - [SMALL_STATE(190)] = 19172, - [SMALL_STATE(191)] = 19229, - [SMALL_STATE(192)] = 19324, + [SMALL_STATE(118)] = 12508, + [SMALL_STATE(119)] = 12603, + [SMALL_STATE(120)] = 12698, + [SMALL_STATE(121)] = 12793, + [SMALL_STATE(122)] = 12888, + [SMALL_STATE(123)] = 12983, + [SMALL_STATE(124)] = 13078, + [SMALL_STATE(125)] = 13173, + [SMALL_STATE(126)] = 13268, + [SMALL_STATE(127)] = 13363, + [SMALL_STATE(128)] = 13458, + [SMALL_STATE(129)] = 13553, + [SMALL_STATE(130)] = 13648, + [SMALL_STATE(131)] = 13743, + [SMALL_STATE(132)] = 13838, + [SMALL_STATE(133)] = 13933, + [SMALL_STATE(134)] = 14028, + [SMALL_STATE(135)] = 14123, + [SMALL_STATE(136)] = 14218, + [SMALL_STATE(137)] = 14313, + [SMALL_STATE(138)] = 14408, + [SMALL_STATE(139)] = 14503, + [SMALL_STATE(140)] = 14598, + [SMALL_STATE(141)] = 14693, + [SMALL_STATE(142)] = 14788, + [SMALL_STATE(143)] = 14883, + [SMALL_STATE(144)] = 14978, + [SMALL_STATE(145)] = 15073, + [SMALL_STATE(146)] = 15168, + [SMALL_STATE(147)] = 15263, + [SMALL_STATE(148)] = 15358, + [SMALL_STATE(149)] = 15453, + [SMALL_STATE(150)] = 15548, + [SMALL_STATE(151)] = 15643, + [SMALL_STATE(152)] = 15738, + [SMALL_STATE(153)] = 15801, + [SMALL_STATE(154)] = 15896, + [SMALL_STATE(155)] = 15991, + [SMALL_STATE(156)] = 16086, + [SMALL_STATE(157)] = 16181, + [SMALL_STATE(158)] = 16238, + [SMALL_STATE(159)] = 16333, + [SMALL_STATE(160)] = 16428, + [SMALL_STATE(161)] = 16523, + [SMALL_STATE(162)] = 16618, + [SMALL_STATE(163)] = 16713, + [SMALL_STATE(164)] = 16808, + [SMALL_STATE(165)] = 16903, + [SMALL_STATE(166)] = 16966, + [SMALL_STATE(167)] = 17061, + [SMALL_STATE(168)] = 17156, + [SMALL_STATE(169)] = 17251, + [SMALL_STATE(170)] = 17346, + [SMALL_STATE(171)] = 17403, + [SMALL_STATE(172)] = 17462, + [SMALL_STATE(173)] = 17521, + [SMALL_STATE(174)] = 17616, + [SMALL_STATE(175)] = 17711, + [SMALL_STATE(176)] = 17806, + [SMALL_STATE(177)] = 17901, + [SMALL_STATE(178)] = 17996, + [SMALL_STATE(179)] = 18091, + [SMALL_STATE(180)] = 18186, + [SMALL_STATE(181)] = 18281, + [SMALL_STATE(182)] = 18376, + [SMALL_STATE(183)] = 18471, + [SMALL_STATE(184)] = 18566, + [SMALL_STATE(185)] = 18661, + [SMALL_STATE(186)] = 18756, + [SMALL_STATE(187)] = 18851, + [SMALL_STATE(188)] = 18946, + [SMALL_STATE(189)] = 19003, + [SMALL_STATE(190)] = 19098, + [SMALL_STATE(191)] = 19193, + [SMALL_STATE(192)] = 19288, [SMALL_STATE(193)] = 19383, [SMALL_STATE(194)] = 19478, [SMALL_STATE(195)] = 19573, [SMALL_STATE(196)] = 19668, [SMALL_STATE(197)] = 19763, - [SMALL_STATE(198)] = 19819, - [SMALL_STATE(199)] = 19875, - [SMALL_STATE(200)] = 19931, - [SMALL_STATE(201)] = 20007, - [SMALL_STATE(202)] = 20083, - [SMALL_STATE(203)] = 20139, - [SMALL_STATE(204)] = 20195, - [SMALL_STATE(205)] = 20269, - [SMALL_STATE(206)] = 20325, - [SMALL_STATE(207)] = 20381, - [SMALL_STATE(208)] = 20453, - [SMALL_STATE(209)] = 20519, - [SMALL_STATE(210)] = 20595, - [SMALL_STATE(211)] = 20651, - [SMALL_STATE(212)] = 20707, - [SMALL_STATE(213)] = 20763, - [SMALL_STATE(214)] = 20833, - [SMALL_STATE(215)] = 20889, - [SMALL_STATE(216)] = 20947, - [SMALL_STATE(217)] = 21003, - [SMALL_STATE(218)] = 21071, - [SMALL_STATE(219)] = 21147, - [SMALL_STATE(220)] = 21223, - [SMALL_STATE(221)] = 21279, - [SMALL_STATE(222)] = 21347, - [SMALL_STATE(223)] = 21403, - [SMALL_STATE(224)] = 21459, - [SMALL_STATE(225)] = 21515, - [SMALL_STATE(226)] = 21571, - [SMALL_STATE(227)] = 21627, - [SMALL_STATE(228)] = 21683, - [SMALL_STATE(229)] = 21739, - [SMALL_STATE(230)] = 21797, + [SMALL_STATE(198)] = 19831, + [SMALL_STATE(199)] = 19887, + [SMALL_STATE(200)] = 19943, + [SMALL_STATE(201)] = 20017, + [SMALL_STATE(202)] = 20073, + [SMALL_STATE(203)] = 20143, + [SMALL_STATE(204)] = 20199, + [SMALL_STATE(205)] = 20255, + [SMALL_STATE(206)] = 20331, + [SMALL_STATE(207)] = 20407, + [SMALL_STATE(208)] = 20463, + [SMALL_STATE(209)] = 20539, + [SMALL_STATE(210)] = 20611, + [SMALL_STATE(211)] = 20669, + [SMALL_STATE(212)] = 20745, + [SMALL_STATE(213)] = 20801, + [SMALL_STATE(214)] = 20877, + [SMALL_STATE(215)] = 20933, + [SMALL_STATE(216)] = 20999, + [SMALL_STATE(217)] = 21055, + [SMALL_STATE(218)] = 21111, + [SMALL_STATE(219)] = 21167, + [SMALL_STATE(220)] = 21243, + [SMALL_STATE(221)] = 21299, + [SMALL_STATE(222)] = 21355, + [SMALL_STATE(223)] = 21411, + [SMALL_STATE(224)] = 21467, + [SMALL_STATE(225)] = 21525, + [SMALL_STATE(226)] = 21581, + [SMALL_STATE(227)] = 21637, + [SMALL_STATE(228)] = 21693, + [SMALL_STATE(229)] = 21749, + [SMALL_STATE(230)] = 21805, [SMALL_STATE(231)] = 21873, [SMALL_STATE(232)] = 21929, [SMALL_STATE(233)] = 21985, @@ -51117,347 +51122,347 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(251)] = 23012, [SMALL_STATE(252)] = 23072, [SMALL_STATE(253)] = 23161, - [SMALL_STATE(254)] = 23216, - [SMALL_STATE(255)] = 23305, - [SMALL_STATE(256)] = 23394, - [SMALL_STATE(257)] = 23483, - [SMALL_STATE(258)] = 23540, - [SMALL_STATE(259)] = 23629, + [SMALL_STATE(254)] = 23218, + [SMALL_STATE(255)] = 23307, + [SMALL_STATE(256)] = 23396, + [SMALL_STATE(257)] = 23451, + [SMALL_STATE(258)] = 23506, + [SMALL_STATE(259)] = 23595, [SMALL_STATE(260)] = 23684, [SMALL_STATE(261)] = 23773, [SMALL_STATE(262)] = 23828, [SMALL_STATE(263)] = 23897, [SMALL_STATE(264)] = 23957, [SMALL_STATE(265)] = 24017, - [SMALL_STATE(266)] = 24084, - [SMALL_STATE(267)] = 24151, - [SMALL_STATE(268)] = 24214, - [SMALL_STATE(269)] = 24271, - [SMALL_STATE(270)] = 24338, - [SMALL_STATE(271)] = 24399, - [SMALL_STATE(272)] = 24466, - [SMALL_STATE(273)] = 24533, - [SMALL_STATE(274)] = 24600, - [SMALL_STATE(275)] = 24667, + [SMALL_STATE(266)] = 24074, + [SMALL_STATE(267)] = 24141, + [SMALL_STATE(268)] = 24206, + [SMALL_STATE(269)] = 24273, + [SMALL_STATE(270)] = 24340, + [SMALL_STATE(271)] = 24401, + [SMALL_STATE(272)] = 24468, + [SMALL_STATE(273)] = 24535, + [SMALL_STATE(274)] = 24598, + [SMALL_STATE(275)] = 24665, [SMALL_STATE(276)] = 24732, [SMALL_STATE(277)] = 24781, - [SMALL_STATE(278)] = 24830, + [SMALL_STATE(278)] = 24832, [SMALL_STATE(279)] = 24881, [SMALL_STATE(280)] = 24927, [SMALL_STATE(281)] = 24979, [SMALL_STATE(282)] = 25031, - [SMALL_STATE(283)] = 25088, - [SMALL_STATE(284)] = 25145, - [SMALL_STATE(285)] = 25202, - [SMALL_STATE(286)] = 25253, - [SMALL_STATE(287)] = 25310, - [SMALL_STATE(288)] = 25359, - [SMALL_STATE(289)] = 25412, - [SMALL_STATE(290)] = 25467, - [SMALL_STATE(291)] = 25528, - [SMALL_STATE(292)] = 25593, - [SMALL_STATE(293)] = 25650, - [SMALL_STATE(294)] = 25707, - [SMALL_STATE(295)] = 25764, + [SMALL_STATE(283)] = 25092, + [SMALL_STATE(284)] = 25149, + [SMALL_STATE(285)] = 25214, + [SMALL_STATE(286)] = 25271, + [SMALL_STATE(287)] = 25324, + [SMALL_STATE(288)] = 25389, + [SMALL_STATE(289)] = 25444, + [SMALL_STATE(290)] = 25501, + [SMALL_STATE(291)] = 25558, + [SMALL_STATE(292)] = 25607, + [SMALL_STATE(293)] = 25664, + [SMALL_STATE(294)] = 25715, + [SMALL_STATE(295)] = 25772, [SMALL_STATE(296)] = 25829, [SMALL_STATE(297)] = 25889, [SMALL_STATE(298)] = 25949, - [SMALL_STATE(299)] = 25992, - [SMALL_STATE(300)] = 26051, - [SMALL_STATE(301)] = 26110, - [SMALL_STATE(302)] = 26169, - [SMALL_STATE(303)] = 26228, - [SMALL_STATE(304)] = 26287, - [SMALL_STATE(305)] = 26330, - [SMALL_STATE(306)] = 26389, - [SMALL_STATE(307)] = 26448, - [SMALL_STATE(308)] = 26507, - [SMALL_STATE(309)] = 26558, - [SMALL_STATE(310)] = 26617, - [SMALL_STATE(311)] = 26676, - [SMALL_STATE(312)] = 26735, - [SMALL_STATE(313)] = 26794, - [SMALL_STATE(314)] = 26853, - [SMALL_STATE(315)] = 26912, - [SMALL_STATE(316)] = 26971, - [SMALL_STATE(317)] = 27030, - [SMALL_STATE(318)] = 27089, - [SMALL_STATE(319)] = 27148, - [SMALL_STATE(320)] = 27207, - [SMALL_STATE(321)] = 27258, - [SMALL_STATE(322)] = 27317, - [SMALL_STATE(323)] = 27376, - [SMALL_STATE(324)] = 27435, - [SMALL_STATE(325)] = 27494, - [SMALL_STATE(326)] = 27553, - [SMALL_STATE(327)] = 27612, - [SMALL_STATE(328)] = 27671, - [SMALL_STATE(329)] = 27730, - [SMALL_STATE(330)] = 27789, - [SMALL_STATE(331)] = 27848, - [SMALL_STATE(332)] = 27889, - [SMALL_STATE(333)] = 27932, - [SMALL_STATE(334)] = 27991, - [SMALL_STATE(335)] = 28032, - [SMALL_STATE(336)] = 28091, + [SMALL_STATE(299)] = 26008, + [SMALL_STATE(300)] = 26067, + [SMALL_STATE(301)] = 26108, + [SMALL_STATE(302)] = 26167, + [SMALL_STATE(303)] = 26226, + [SMALL_STATE(304)] = 26285, + [SMALL_STATE(305)] = 26344, + [SMALL_STATE(306)] = 26403, + [SMALL_STATE(307)] = 26462, + [SMALL_STATE(308)] = 26521, + [SMALL_STATE(309)] = 26580, + [SMALL_STATE(310)] = 26623, + [SMALL_STATE(311)] = 26682, + [SMALL_STATE(312)] = 26741, + [SMALL_STATE(313)] = 26800, + [SMALL_STATE(314)] = 26859, + [SMALL_STATE(315)] = 26902, + [SMALL_STATE(316)] = 26961, + [SMALL_STATE(317)] = 27020, + [SMALL_STATE(318)] = 27061, + [SMALL_STATE(319)] = 27120, + [SMALL_STATE(320)] = 27179, + [SMALL_STATE(321)] = 27238, + [SMALL_STATE(322)] = 27297, + [SMALL_STATE(323)] = 27356, + [SMALL_STATE(324)] = 27397, + [SMALL_STATE(325)] = 27456, + [SMALL_STATE(326)] = 27515, + [SMALL_STATE(327)] = 27574, + [SMALL_STATE(328)] = 27625, + [SMALL_STATE(329)] = 27684, + [SMALL_STATE(330)] = 27743, + [SMALL_STATE(331)] = 27786, + [SMALL_STATE(332)] = 27845, + [SMALL_STATE(333)] = 27896, + [SMALL_STATE(334)] = 27955, + [SMALL_STATE(335)] = 28014, + [SMALL_STATE(336)] = 28073, [SMALL_STATE(337)] = 28132, - [SMALL_STATE(338)] = 28175, - [SMALL_STATE(339)] = 28234, + [SMALL_STATE(338)] = 28191, + [SMALL_STATE(339)] = 28250, [SMALL_STATE(340)] = 28293, [SMALL_STATE(341)] = 28331, - [SMALL_STATE(342)] = 28369, + [SMALL_STATE(342)] = 28371, [SMALL_STATE(343)] = 28409, [SMALL_STATE(344)] = 28447, - [SMALL_STATE(345)] = 28484, - [SMALL_STATE(346)] = 28527, - [SMALL_STATE(347)] = 28564, - [SMALL_STATE(348)] = 28609, - [SMALL_STATE(349)] = 28646, - [SMALL_STATE(350)] = 28683, - [SMALL_STATE(351)] = 28720, - [SMALL_STATE(352)] = 28757, - [SMALL_STATE(353)] = 28794, - [SMALL_STATE(354)] = 28831, - [SMALL_STATE(355)] = 28868, - [SMALL_STATE(356)] = 28905, - [SMALL_STATE(357)] = 28942, - [SMALL_STATE(358)] = 28987, + [SMALL_STATE(345)] = 28492, + [SMALL_STATE(346)] = 28535, + [SMALL_STATE(347)] = 28578, + [SMALL_STATE(348)] = 28615, + [SMALL_STATE(349)] = 28652, + [SMALL_STATE(350)] = 28689, + [SMALL_STATE(351)] = 28726, + [SMALL_STATE(352)] = 28763, + [SMALL_STATE(353)] = 28800, + [SMALL_STATE(354)] = 28837, + [SMALL_STATE(355)] = 28874, + [SMALL_STATE(356)] = 28911, + [SMALL_STATE(357)] = 28948, + [SMALL_STATE(358)] = 28991, [SMALL_STATE(359)] = 29028, - [SMALL_STATE(360)] = 29073, - [SMALL_STATE(361)] = 29110, - [SMALL_STATE(362)] = 29147, - [SMALL_STATE(363)] = 29184, - [SMALL_STATE(364)] = 29227, - [SMALL_STATE(365)] = 29264, - [SMALL_STATE(366)] = 29301, - [SMALL_STATE(367)] = 29344, - [SMALL_STATE(368)] = 29381, - [SMALL_STATE(369)] = 29418, - [SMALL_STATE(370)] = 29463, - [SMALL_STATE(371)] = 29506, - [SMALL_STATE(372)] = 29543, - [SMALL_STATE(373)] = 29586, + [SMALL_STATE(360)] = 29071, + [SMALL_STATE(361)] = 29108, + [SMALL_STATE(362)] = 29145, + [SMALL_STATE(363)] = 29182, + [SMALL_STATE(364)] = 29219, + [SMALL_STATE(365)] = 29260, + [SMALL_STATE(366)] = 29297, + [SMALL_STATE(367)] = 29334, + [SMALL_STATE(368)] = 29377, + [SMALL_STATE(369)] = 29414, + [SMALL_STATE(370)] = 29459, + [SMALL_STATE(371)] = 29504, + [SMALL_STATE(372)] = 29541, + [SMALL_STATE(373)] = 29578, [SMALL_STATE(374)] = 29623, [SMALL_STATE(375)] = 29660, [SMALL_STATE(376)] = 29697, - [SMALL_STATE(377)] = 29736, + [SMALL_STATE(377)] = 29738, [SMALL_STATE(378)] = 29777, [SMALL_STATE(379)] = 29811, - [SMALL_STATE(380)] = 29847, - [SMALL_STATE(381)] = 29883, - [SMALL_STATE(382)] = 29919, - [SMALL_STATE(383)] = 29955, - [SMALL_STATE(384)] = 29991, - [SMALL_STATE(385)] = 30025, - [SMALL_STATE(386)] = 30061, - [SMALL_STATE(387)] = 30097, - [SMALL_STATE(388)] = 30131, - [SMALL_STATE(389)] = 30165, - [SMALL_STATE(390)] = 30201, - [SMALL_STATE(391)] = 30237, - [SMALL_STATE(392)] = 30273, - [SMALL_STATE(393)] = 30309, - [SMALL_STATE(394)] = 30343, - [SMALL_STATE(395)] = 30377, - [SMALL_STATE(396)] = 30413, - [SMALL_STATE(397)] = 30447, - [SMALL_STATE(398)] = 30481, - [SMALL_STATE(399)] = 30515, - [SMALL_STATE(400)] = 30549, - [SMALL_STATE(401)] = 30583, - [SMALL_STATE(402)] = 30617, - [SMALL_STATE(403)] = 30651, - [SMALL_STATE(404)] = 30685, - [SMALL_STATE(405)] = 30719, - [SMALL_STATE(406)] = 30753, - [SMALL_STATE(407)] = 30787, + [SMALL_STATE(380)] = 29845, + [SMALL_STATE(381)] = 29879, + [SMALL_STATE(382)] = 29913, + [SMALL_STATE(383)] = 29949, + [SMALL_STATE(384)] = 29985, + [SMALL_STATE(385)] = 30019, + [SMALL_STATE(386)] = 30053, + [SMALL_STATE(387)] = 30087, + [SMALL_STATE(388)] = 30121, + [SMALL_STATE(389)] = 30157, + [SMALL_STATE(390)] = 30191, + [SMALL_STATE(391)] = 30227, + [SMALL_STATE(392)] = 30263, + [SMALL_STATE(393)] = 30299, + [SMALL_STATE(394)] = 30335, + [SMALL_STATE(395)] = 30371, + [SMALL_STATE(396)] = 30405, + [SMALL_STATE(397)] = 30441, + [SMALL_STATE(398)] = 30475, + [SMALL_STATE(399)] = 30509, + [SMALL_STATE(400)] = 30543, + [SMALL_STATE(401)] = 30577, + [SMALL_STATE(402)] = 30611, + [SMALL_STATE(403)] = 30645, + [SMALL_STATE(404)] = 30679, + [SMALL_STATE(405)] = 30715, + [SMALL_STATE(406)] = 30749, + [SMALL_STATE(407)] = 30785, [SMALL_STATE(408)] = 30821, [SMALL_STATE(409)] = 30857, [SMALL_STATE(410)] = 30890, [SMALL_STATE(411)] = 30923, - [SMALL_STATE(412)] = 30958, - [SMALL_STATE(413)] = 30993, - [SMALL_STATE(414)] = 31028, - [SMALL_STATE(415)] = 31063, - [SMALL_STATE(416)] = 31098, - [SMALL_STATE(417)] = 31133, - [SMALL_STATE(418)] = 31168, - [SMALL_STATE(419)] = 31203, - [SMALL_STATE(420)] = 31238, - [SMALL_STATE(421)] = 31273, - [SMALL_STATE(422)] = 31308, - [SMALL_STATE(423)] = 31343, - [SMALL_STATE(424)] = 31378, - [SMALL_STATE(425)] = 31413, - [SMALL_STATE(426)] = 31448, - [SMALL_STATE(427)] = 31481, - [SMALL_STATE(428)] = 31516, - [SMALL_STATE(429)] = 31551, - [SMALL_STATE(430)] = 31586, - [SMALL_STATE(431)] = 31621, - [SMALL_STATE(432)] = 31656, - [SMALL_STATE(433)] = 31691, - [SMALL_STATE(434)] = 31726, - [SMALL_STATE(435)] = 31761, - [SMALL_STATE(436)] = 31796, - [SMALL_STATE(437)] = 31831, - [SMALL_STATE(438)] = 31866, - [SMALL_STATE(439)] = 31901, - [SMALL_STATE(440)] = 31936, - [SMALL_STATE(441)] = 31971, - [SMALL_STATE(442)] = 32006, - [SMALL_STATE(443)] = 32041, - [SMALL_STATE(444)] = 32076, - [SMALL_STATE(445)] = 32111, - [SMALL_STATE(446)] = 32146, - [SMALL_STATE(447)] = 32181, - [SMALL_STATE(448)] = 32216, - [SMALL_STATE(449)] = 32251, - [SMALL_STATE(450)] = 32286, - [SMALL_STATE(451)] = 32321, - [SMALL_STATE(452)] = 32356, - [SMALL_STATE(453)] = 32391, - [SMALL_STATE(454)] = 32424, - [SMALL_STATE(455)] = 32457, - [SMALL_STATE(456)] = 32490, - [SMALL_STATE(457)] = 32523, - [SMALL_STATE(458)] = 32556, - [SMALL_STATE(459)] = 32589, + [SMALL_STATE(412)] = 30956, + [SMALL_STATE(413)] = 30991, + [SMALL_STATE(414)] = 31026, + [SMALL_STATE(415)] = 31061, + [SMALL_STATE(416)] = 31094, + [SMALL_STATE(417)] = 31129, + [SMALL_STATE(418)] = 31164, + [SMALL_STATE(419)] = 31197, + [SMALL_STATE(420)] = 31232, + [SMALL_STATE(421)] = 31267, + [SMALL_STATE(422)] = 31302, + [SMALL_STATE(423)] = 31337, + [SMALL_STATE(424)] = 31372, + [SMALL_STATE(425)] = 31407, + [SMALL_STATE(426)] = 31442, + [SMALL_STATE(427)] = 31477, + [SMALL_STATE(428)] = 31512, + [SMALL_STATE(429)] = 31547, + [SMALL_STATE(430)] = 31582, + [SMALL_STATE(431)] = 31617, + [SMALL_STATE(432)] = 31652, + [SMALL_STATE(433)] = 31687, + [SMALL_STATE(434)] = 31722, + [SMALL_STATE(435)] = 31757, + [SMALL_STATE(436)] = 31792, + [SMALL_STATE(437)] = 31827, + [SMALL_STATE(438)] = 31860, + [SMALL_STATE(439)] = 31895, + [SMALL_STATE(440)] = 31930, + [SMALL_STATE(441)] = 31963, + [SMALL_STATE(442)] = 31998, + [SMALL_STATE(443)] = 32033, + [SMALL_STATE(444)] = 32068, + [SMALL_STATE(445)] = 32103, + [SMALL_STATE(446)] = 32138, + [SMALL_STATE(447)] = 32173, + [SMALL_STATE(448)] = 32208, + [SMALL_STATE(449)] = 32243, + [SMALL_STATE(450)] = 32276, + [SMALL_STATE(451)] = 32311, + [SMALL_STATE(452)] = 32346, + [SMALL_STATE(453)] = 32381, + [SMALL_STATE(454)] = 32414, + [SMALL_STATE(455)] = 32447, + [SMALL_STATE(456)] = 32482, + [SMALL_STATE(457)] = 32517, + [SMALL_STATE(458)] = 32552, + [SMALL_STATE(459)] = 32587, [SMALL_STATE(460)] = 32622, - [SMALL_STATE(461)] = 32655, + [SMALL_STATE(461)] = 32657, [SMALL_STATE(462)] = 32690, [SMALL_STATE(463)] = 32723, - [SMALL_STATE(464)] = 32758, + [SMALL_STATE(464)] = 32756, [SMALL_STATE(465)] = 32791, [SMALL_STATE(466)] = 32826, [SMALL_STATE(467)] = 32861, - [SMALL_STATE(468)] = 32894, - [SMALL_STATE(469)] = 32927, - [SMALL_STATE(470)] = 32960, - [SMALL_STATE(471)] = 32995, - [SMALL_STATE(472)] = 33028, - [SMALL_STATE(473)] = 33061, - [SMALL_STATE(474)] = 33096, - [SMALL_STATE(475)] = 33131, - [SMALL_STATE(476)] = 33166, - [SMALL_STATE(477)] = 33201, - [SMALL_STATE(478)] = 33236, - [SMALL_STATE(479)] = 33269, - [SMALL_STATE(480)] = 33304, - [SMALL_STATE(481)] = 33339, - [SMALL_STATE(482)] = 33372, - [SMALL_STATE(483)] = 33405, - [SMALL_STATE(484)] = 33440, - [SMALL_STATE(485)] = 33475, - [SMALL_STATE(486)] = 33510, - [SMALL_STATE(487)] = 33543, - [SMALL_STATE(488)] = 33576, - [SMALL_STATE(489)] = 33609, - [SMALL_STATE(490)] = 33642, - [SMALL_STATE(491)] = 33677, - [SMALL_STATE(492)] = 33710, - [SMALL_STATE(493)] = 33743, - [SMALL_STATE(494)] = 33778, - [SMALL_STATE(495)] = 33813, - [SMALL_STATE(496)] = 33846, - [SMALL_STATE(497)] = 33879, - [SMALL_STATE(498)] = 33912, - [SMALL_STATE(499)] = 33945, - [SMALL_STATE(500)] = 33980, - [SMALL_STATE(501)] = 34015, - [SMALL_STATE(502)] = 34048, - [SMALL_STATE(503)] = 34081, - [SMALL_STATE(504)] = 34116, - [SMALL_STATE(505)] = 34151, - [SMALL_STATE(506)] = 34186, - [SMALL_STATE(507)] = 34221, - [SMALL_STATE(508)] = 34254, - [SMALL_STATE(509)] = 34287, - [SMALL_STATE(510)] = 34322, - [SMALL_STATE(511)] = 34355, - [SMALL_STATE(512)] = 34390, - [SMALL_STATE(513)] = 34423, - [SMALL_STATE(514)] = 34456, - [SMALL_STATE(515)] = 34489, - [SMALL_STATE(516)] = 34524, - [SMALL_STATE(517)] = 34557, - [SMALL_STATE(518)] = 34592, - [SMALL_STATE(519)] = 34627, - [SMALL_STATE(520)] = 34660, - [SMALL_STATE(521)] = 34695, - [SMALL_STATE(522)] = 34728, - [SMALL_STATE(523)] = 34761, - [SMALL_STATE(524)] = 34794, - [SMALL_STATE(525)] = 34827, - [SMALL_STATE(526)] = 34862, - [SMALL_STATE(527)] = 34897, - [SMALL_STATE(528)] = 34930, - [SMALL_STATE(529)] = 34965, - [SMALL_STATE(530)] = 34998, - [SMALL_STATE(531)] = 35031, - [SMALL_STATE(532)] = 35066, - [SMALL_STATE(533)] = 35101, - [SMALL_STATE(534)] = 35136, - [SMALL_STATE(535)] = 35169, - [SMALL_STATE(536)] = 35204, - [SMALL_STATE(537)] = 35237, - [SMALL_STATE(538)] = 35270, - [SMALL_STATE(539)] = 35305, - [SMALL_STATE(540)] = 35338, - [SMALL_STATE(541)] = 35371, - [SMALL_STATE(542)] = 35404, - [SMALL_STATE(543)] = 35439, - [SMALL_STATE(544)] = 35472, - [SMALL_STATE(545)] = 35505, - [SMALL_STATE(546)] = 35538, - [SMALL_STATE(547)] = 35571, - [SMALL_STATE(548)] = 35604, - [SMALL_STATE(549)] = 35637, - [SMALL_STATE(550)] = 35670, - [SMALL_STATE(551)] = 35705, - [SMALL_STATE(552)] = 35738, - [SMALL_STATE(553)] = 35771, - [SMALL_STATE(554)] = 35804, - [SMALL_STATE(555)] = 35837, - [SMALL_STATE(556)] = 35870, - [SMALL_STATE(557)] = 35903, - [SMALL_STATE(558)] = 35936, - [SMALL_STATE(559)] = 35969, - [SMALL_STATE(560)] = 36002, - [SMALL_STATE(561)] = 36035, - [SMALL_STATE(562)] = 36068, - [SMALL_STATE(563)] = 36101, - [SMALL_STATE(564)] = 36134, - [SMALL_STATE(565)] = 36167, - [SMALL_STATE(566)] = 36200, - [SMALL_STATE(567)] = 36233, - [SMALL_STATE(568)] = 36266, - [SMALL_STATE(569)] = 36301, - [SMALL_STATE(570)] = 36334, - [SMALL_STATE(571)] = 36367, - [SMALL_STATE(572)] = 36400, - [SMALL_STATE(573)] = 36433, - [SMALL_STATE(574)] = 36468, - [SMALL_STATE(575)] = 36503, - [SMALL_STATE(576)] = 36538, - [SMALL_STATE(577)] = 36571, - [SMALL_STATE(578)] = 36604, - [SMALL_STATE(579)] = 36637, - [SMALL_STATE(580)] = 36672, - [SMALL_STATE(581)] = 36707, - [SMALL_STATE(582)] = 36740, - [SMALL_STATE(583)] = 36775, - [SMALL_STATE(584)] = 36808, - [SMALL_STATE(585)] = 36841, - [SMALL_STATE(586)] = 36874, - [SMALL_STATE(587)] = 36909, - [SMALL_STATE(588)] = 36942, - [SMALL_STATE(589)] = 36975, - [SMALL_STATE(590)] = 37008, - [SMALL_STATE(591)] = 37041, - [SMALL_STATE(592)] = 37074, - [SMALL_STATE(593)] = 37109, - [SMALL_STATE(594)] = 37144, + [SMALL_STATE(468)] = 32896, + [SMALL_STATE(469)] = 32929, + [SMALL_STATE(470)] = 32964, + [SMALL_STATE(471)] = 32999, + [SMALL_STATE(472)] = 33034, + [SMALL_STATE(473)] = 33069, + [SMALL_STATE(474)] = 33102, + [SMALL_STATE(475)] = 33137, + [SMALL_STATE(476)] = 33172, + [SMALL_STATE(477)] = 33207, + [SMALL_STATE(478)] = 33240, + [SMALL_STATE(479)] = 33275, + [SMALL_STATE(480)] = 33310, + [SMALL_STATE(481)] = 33345, + [SMALL_STATE(482)] = 33380, + [SMALL_STATE(483)] = 33413, + [SMALL_STATE(484)] = 33446, + [SMALL_STATE(485)] = 33479, + [SMALL_STATE(486)] = 33514, + [SMALL_STATE(487)] = 33547, + [SMALL_STATE(488)] = 33582, + [SMALL_STATE(489)] = 33615, + [SMALL_STATE(490)] = 33650, + [SMALL_STATE(491)] = 33685, + [SMALL_STATE(492)] = 33718, + [SMALL_STATE(493)] = 33753, + [SMALL_STATE(494)] = 33786, + [SMALL_STATE(495)] = 33821, + [SMALL_STATE(496)] = 33854, + [SMALL_STATE(497)] = 33887, + [SMALL_STATE(498)] = 33920, + [SMALL_STATE(499)] = 33953, + [SMALL_STATE(500)] = 33988, + [SMALL_STATE(501)] = 34023, + [SMALL_STATE(502)] = 34056, + [SMALL_STATE(503)] = 34089, + [SMALL_STATE(504)] = 34122, + [SMALL_STATE(505)] = 34157, + [SMALL_STATE(506)] = 34190, + [SMALL_STATE(507)] = 34225, + [SMALL_STATE(508)] = 34260, + [SMALL_STATE(509)] = 34293, + [SMALL_STATE(510)] = 34326, + [SMALL_STATE(511)] = 34361, + [SMALL_STATE(512)] = 34394, + [SMALL_STATE(513)] = 34429, + [SMALL_STATE(514)] = 34462, + [SMALL_STATE(515)] = 34495, + [SMALL_STATE(516)] = 34528, + [SMALL_STATE(517)] = 34563, + [SMALL_STATE(518)] = 34598, + [SMALL_STATE(519)] = 34631, + [SMALL_STATE(520)] = 34666, + [SMALL_STATE(521)] = 34699, + [SMALL_STATE(522)] = 34734, + [SMALL_STATE(523)] = 34767, + [SMALL_STATE(524)] = 34800, + [SMALL_STATE(525)] = 34833, + [SMALL_STATE(526)] = 34866, + [SMALL_STATE(527)] = 34901, + [SMALL_STATE(528)] = 34936, + [SMALL_STATE(529)] = 34971, + [SMALL_STATE(530)] = 35006, + [SMALL_STATE(531)] = 35039, + [SMALL_STATE(532)] = 35072, + [SMALL_STATE(533)] = 35105, + [SMALL_STATE(534)] = 35140, + [SMALL_STATE(535)] = 35175, + [SMALL_STATE(536)] = 35208, + [SMALL_STATE(537)] = 35243, + [SMALL_STATE(538)] = 35276, + [SMALL_STATE(539)] = 35309, + [SMALL_STATE(540)] = 35344, + [SMALL_STATE(541)] = 35377, + [SMALL_STATE(542)] = 35412, + [SMALL_STATE(543)] = 35447, + [SMALL_STATE(544)] = 35480, + [SMALL_STATE(545)] = 35513, + [SMALL_STATE(546)] = 35546, + [SMALL_STATE(547)] = 35579, + [SMALL_STATE(548)] = 35612, + [SMALL_STATE(549)] = 35645, + [SMALL_STATE(550)] = 35678, + [SMALL_STATE(551)] = 35711, + [SMALL_STATE(552)] = 35744, + [SMALL_STATE(553)] = 35779, + [SMALL_STATE(554)] = 35814, + [SMALL_STATE(555)] = 35847, + [SMALL_STATE(556)] = 35880, + [SMALL_STATE(557)] = 35913, + [SMALL_STATE(558)] = 35946, + [SMALL_STATE(559)] = 35979, + [SMALL_STATE(560)] = 36012, + [SMALL_STATE(561)] = 36045, + [SMALL_STATE(562)] = 36078, + [SMALL_STATE(563)] = 36111, + [SMALL_STATE(564)] = 36144, + [SMALL_STATE(565)] = 36177, + [SMALL_STATE(566)] = 36210, + [SMALL_STATE(567)] = 36243, + [SMALL_STATE(568)] = 36276, + [SMALL_STATE(569)] = 36309, + [SMALL_STATE(570)] = 36342, + [SMALL_STATE(571)] = 36375, + [SMALL_STATE(572)] = 36408, + [SMALL_STATE(573)] = 36443, + [SMALL_STATE(574)] = 36478, + [SMALL_STATE(575)] = 36511, + [SMALL_STATE(576)] = 36546, + [SMALL_STATE(577)] = 36579, + [SMALL_STATE(578)] = 36612, + [SMALL_STATE(579)] = 36645, + [SMALL_STATE(580)] = 36678, + [SMALL_STATE(581)] = 36711, + [SMALL_STATE(582)] = 36746, + [SMALL_STATE(583)] = 36781, + [SMALL_STATE(584)] = 36814, + [SMALL_STATE(585)] = 36849, + [SMALL_STATE(586)] = 36882, + [SMALL_STATE(587)] = 36915, + [SMALL_STATE(588)] = 36948, + [SMALL_STATE(589)] = 36981, + [SMALL_STATE(590)] = 37014, + [SMALL_STATE(591)] = 37047, + [SMALL_STATE(592)] = 37080, + [SMALL_STATE(593)] = 37113, + [SMALL_STATE(594)] = 37146, [SMALL_STATE(595)] = 37179, [SMALL_STATE(596)] = 37214, [SMALL_STATE(597)] = 37249, @@ -51468,41 +51473,41 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(602)] = 37424, [SMALL_STATE(603)] = 37459, [SMALL_STATE(604)] = 37494, - [SMALL_STATE(605)] = 37541, + [SMALL_STATE(605)] = 37545, [SMALL_STATE(606)] = 37592, [SMALL_STATE(607)] = 37643, - [SMALL_STATE(608)] = 37694, - [SMALL_STATE(609)] = 37741, + [SMALL_STATE(608)] = 37690, + [SMALL_STATE(609)] = 37723, [SMALL_STATE(610)] = 37774, - [SMALL_STATE(611)] = 37818, - [SMALL_STATE(612)] = 37862, - [SMALL_STATE(613)] = 37906, - [SMALL_STATE(614)] = 37950, - [SMALL_STATE(615)] = 37994, - [SMALL_STATE(616)] = 38038, - [SMALL_STATE(617)] = 38082, - [SMALL_STATE(618)] = 38126, - [SMALL_STATE(619)] = 38168, - [SMALL_STATE(620)] = 38212, + [SMALL_STATE(611)] = 37816, + [SMALL_STATE(612)] = 37860, + [SMALL_STATE(613)] = 37904, + [SMALL_STATE(614)] = 37948, + [SMALL_STATE(615)] = 37992, + [SMALL_STATE(616)] = 38036, + [SMALL_STATE(617)] = 38080, + [SMALL_STATE(618)] = 38128, + [SMALL_STATE(619)] = 38172, + [SMALL_STATE(620)] = 38216, [SMALL_STATE(621)] = 38260, [SMALL_STATE(622)] = 38308, [SMALL_STATE(623)] = 38352, [SMALL_STATE(624)] = 38396, [SMALL_STATE(625)] = 38440, - [SMALL_STATE(626)] = 38467, + [SMALL_STATE(626)] = 38485, [SMALL_STATE(627)] = 38512, [SMALL_STATE(628)] = 38557, - [SMALL_STATE(629)] = 38584, + [SMALL_STATE(629)] = 38602, [SMALL_STATE(630)] = 38629, [SMALL_STATE(631)] = 38656, - [SMALL_STATE(632)] = 38698, + [SMALL_STATE(632)] = 38688, [SMALL_STATE(633)] = 38730, - [SMALL_STATE(634)] = 38760, - [SMALL_STATE(635)] = 38802, - [SMALL_STATE(636)] = 38834, + [SMALL_STATE(634)] = 38772, + [SMALL_STATE(635)] = 38814, + [SMALL_STATE(636)] = 38846, [SMALL_STATE(637)] = 38876, [SMALL_STATE(638)] = 38918, - [SMALL_STATE(639)] = 38960, + [SMALL_STATE(639)] = 38958, [SMALL_STATE(640)] = 39000, [SMALL_STATE(641)] = 39042, [SMALL_STATE(642)] = 39084, @@ -51510,309 +51515,309 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(644)] = 39168, [SMALL_STATE(645)] = 39210, [SMALL_STATE(646)] = 39249, - [SMALL_STATE(647)] = 39288, - [SMALL_STATE(648)] = 39327, - [SMALL_STATE(649)] = 39366, - [SMALL_STATE(650)] = 39405, - [SMALL_STATE(651)] = 39444, - [SMALL_STATE(652)] = 39483, - [SMALL_STATE(653)] = 39522, - [SMALL_STATE(654)] = 39561, - [SMALL_STATE(655)] = 39600, + [SMALL_STATE(647)] = 39280, + [SMALL_STATE(648)] = 39319, + [SMALL_STATE(649)] = 39358, + [SMALL_STATE(650)] = 39397, + [SMALL_STATE(651)] = 39436, + [SMALL_STATE(652)] = 39475, + [SMALL_STATE(653)] = 39514, + [SMALL_STATE(654)] = 39553, + [SMALL_STATE(655)] = 39592, [SMALL_STATE(656)] = 39631, [SMALL_STATE(657)] = 39670, [SMALL_STATE(658)] = 39709, [SMALL_STATE(659)] = 39748, [SMALL_STATE(660)] = 39787, [SMALL_STATE(661)] = 39826, - [SMALL_STATE(662)] = 39862, - [SMALL_STATE(663)] = 39898, - [SMALL_STATE(664)] = 39922, - [SMALL_STATE(665)] = 39948, - [SMALL_STATE(666)] = 39974, - [SMALL_STATE(667)] = 40000, - [SMALL_STATE(668)] = 40026, - [SMALL_STATE(669)] = 40062, - [SMALL_STATE(670)] = 40086, - [SMALL_STATE(671)] = 40112, - [SMALL_STATE(672)] = 40138, - [SMALL_STATE(673)] = 40170, - [SMALL_STATE(674)] = 40194, - [SMALL_STATE(675)] = 40230, - [SMALL_STATE(676)] = 40254, - [SMALL_STATE(677)] = 40278, + [SMALL_STATE(662)] = 39850, + [SMALL_STATE(663)] = 39874, + [SMALL_STATE(664)] = 39910, + [SMALL_STATE(665)] = 39936, + [SMALL_STATE(666)] = 39962, + [SMALL_STATE(667)] = 39988, + [SMALL_STATE(668)] = 40014, + [SMALL_STATE(669)] = 40040, + [SMALL_STATE(670)] = 40066, + [SMALL_STATE(671)] = 40090, + [SMALL_STATE(672)] = 40116, + [SMALL_STATE(673)] = 40152, + [SMALL_STATE(674)] = 40176, + [SMALL_STATE(675)] = 40212, + [SMALL_STATE(676)] = 40236, + [SMALL_STATE(677)] = 40272, [SMALL_STATE(678)] = 40304, - [SMALL_STATE(679)] = 40339, - [SMALL_STATE(680)] = 40374, - [SMALL_STATE(681)] = 40397, - [SMALL_STATE(682)] = 40424, + [SMALL_STATE(679)] = 40327, + [SMALL_STATE(680)] = 40362, + [SMALL_STATE(681)] = 40385, + [SMALL_STATE(682)] = 40412, [SMALL_STATE(683)] = 40447, [SMALL_STATE(684)] = 40477, - [SMALL_STATE(685)] = 40507, - [SMALL_STATE(686)] = 40537, - [SMALL_STATE(687)] = 40567, - [SMALL_STATE(688)] = 40597, - [SMALL_STATE(689)] = 40627, - [SMALL_STATE(690)] = 40659, - [SMALL_STATE(691)] = 40689, - [SMALL_STATE(692)] = 40719, - [SMALL_STATE(693)] = 40745, - [SMALL_STATE(694)] = 40775, - [SMALL_STATE(695)] = 40801, - [SMALL_STATE(696)] = 40831, - [SMALL_STATE(697)] = 40863, - [SMALL_STATE(698)] = 40893, - [SMALL_STATE(699)] = 40919, - [SMALL_STATE(700)] = 40949, - [SMALL_STATE(701)] = 40979, - [SMALL_STATE(702)] = 41009, - [SMALL_STATE(703)] = 41039, - [SMALL_STATE(704)] = 41069, - [SMALL_STATE(705)] = 41099, - [SMALL_STATE(706)] = 41129, - [SMALL_STATE(707)] = 41159, + [SMALL_STATE(685)] = 40509, + [SMALL_STATE(686)] = 40533, + [SMALL_STATE(687)] = 40563, + [SMALL_STATE(688)] = 40589, + [SMALL_STATE(689)] = 40619, + [SMALL_STATE(690)] = 40649, + [SMALL_STATE(691)] = 40675, + [SMALL_STATE(692)] = 40705, + [SMALL_STATE(693)] = 40735, + [SMALL_STATE(694)] = 40765, + [SMALL_STATE(695)] = 40795, + [SMALL_STATE(696)] = 40821, + [SMALL_STATE(697)] = 40851, + [SMALL_STATE(698)] = 40881, + [SMALL_STATE(699)] = 40911, + [SMALL_STATE(700)] = 40941, + [SMALL_STATE(701)] = 40973, + [SMALL_STATE(702)] = 41003, + [SMALL_STATE(703)] = 41033, + [SMALL_STATE(704)] = 41063, + [SMALL_STATE(705)] = 41093, + [SMALL_STATE(706)] = 41123, + [SMALL_STATE(707)] = 41153, [SMALL_STATE(708)] = 41183, [SMALL_STATE(709)] = 41213, - [SMALL_STATE(710)] = 41234, - [SMALL_STATE(711)] = 41263, - [SMALL_STATE(712)] = 41292, - [SMALL_STATE(713)] = 41323, - [SMALL_STATE(714)] = 41354, - [SMALL_STATE(715)] = 41389, - [SMALL_STATE(716)] = 41424, - [SMALL_STATE(717)] = 41453, - [SMALL_STATE(718)] = 41482, - [SMALL_STATE(719)] = 41502, - [SMALL_STATE(720)] = 41522, - [SMALL_STATE(721)] = 41550, - [SMALL_STATE(722)] = 41578, - [SMALL_STATE(723)] = 41606, - [SMALL_STATE(724)] = 41638, - [SMALL_STATE(725)] = 41670, - [SMALL_STATE(726)] = 41700, - [SMALL_STATE(727)] = 41728, - [SMALL_STATE(728)] = 41748, - [SMALL_STATE(729)] = 41768, - [SMALL_STATE(730)] = 41796, - [SMALL_STATE(731)] = 41816, - [SMALL_STATE(732)] = 41836, - [SMALL_STATE(733)] = 41857, - [SMALL_STATE(734)] = 41876, - [SMALL_STATE(735)] = 41897, - [SMALL_STATE(736)] = 41921, - [SMALL_STATE(737)] = 41945, - [SMALL_STATE(738)] = 41967, - [SMALL_STATE(739)] = 41993, - [SMALL_STATE(740)] = 42017, - [SMALL_STATE(741)] = 42039, - [SMALL_STATE(742)] = 42063, - [SMALL_STATE(743)] = 42089, - [SMALL_STATE(744)] = 42115, - [SMALL_STATE(745)] = 42139, - [SMALL_STATE(746)] = 42163, - [SMALL_STATE(747)] = 42185, - [SMALL_STATE(748)] = 42209, - [SMALL_STATE(749)] = 42233, - [SMALL_STATE(750)] = 42257, - [SMALL_STATE(751)] = 42281, - [SMALL_STATE(752)] = 42307, - [SMALL_STATE(753)] = 42331, - [SMALL_STATE(754)] = 42357, - [SMALL_STATE(755)] = 42383, - [SMALL_STATE(756)] = 42407, - [SMALL_STATE(757)] = 42426, - [SMALL_STATE(758)] = 42447, - [SMALL_STATE(759)] = 42468, - [SMALL_STATE(760)] = 42489, - [SMALL_STATE(761)] = 42510, - [SMALL_STATE(762)] = 42529, - [SMALL_STATE(763)] = 42550, - [SMALL_STATE(764)] = 42569, - [SMALL_STATE(765)] = 42588, - [SMALL_STATE(766)] = 42607, - [SMALL_STATE(767)] = 42626, - [SMALL_STATE(768)] = 42649, - [SMALL_STATE(769)] = 42670, - [SMALL_STATE(770)] = 42693, - [SMALL_STATE(771)] = 42714, - [SMALL_STATE(772)] = 42737, - [SMALL_STATE(773)] = 42758, - [SMALL_STATE(774)] = 42781, - [SMALL_STATE(775)] = 42804, - [SMALL_STATE(776)] = 42825, - [SMALL_STATE(777)] = 42846, - [SMALL_STATE(778)] = 42869, - [SMALL_STATE(779)] = 42892, - [SMALL_STATE(780)] = 42913, - [SMALL_STATE(781)] = 42936, - [SMALL_STATE(782)] = 42959, - [SMALL_STATE(783)] = 42978, - [SMALL_STATE(784)] = 42999, - [SMALL_STATE(785)] = 43020, - [SMALL_STATE(786)] = 43041, + [SMALL_STATE(710)] = 41244, + [SMALL_STATE(711)] = 41273, + [SMALL_STATE(712)] = 41302, + [SMALL_STATE(713)] = 41331, + [SMALL_STATE(714)] = 41360, + [SMALL_STATE(715)] = 41381, + [SMALL_STATE(716)] = 41412, + [SMALL_STATE(717)] = 41432, + [SMALL_STATE(718)] = 41460, + [SMALL_STATE(719)] = 41480, + [SMALL_STATE(720)] = 41508, + [SMALL_STATE(721)] = 41536, + [SMALL_STATE(722)] = 41564, + [SMALL_STATE(723)] = 41584, + [SMALL_STATE(724)] = 41616, + [SMALL_STATE(725)] = 41644, + [SMALL_STATE(726)] = 41676, + [SMALL_STATE(727)] = 41696, + [SMALL_STATE(728)] = 41716, + [SMALL_STATE(729)] = 41748, + [SMALL_STATE(730)] = 41768, + [SMALL_STATE(731)] = 41798, + [SMALL_STATE(732)] = 41830, + [SMALL_STATE(733)] = 41849, + [SMALL_STATE(734)] = 41870, + [SMALL_STATE(735)] = 41899, + [SMALL_STATE(736)] = 41920, + [SMALL_STATE(737)] = 41946, + [SMALL_STATE(738)] = 41972, + [SMALL_STATE(739)] = 41996, + [SMALL_STATE(740)] = 42020, + [SMALL_STATE(741)] = 42046, + [SMALL_STATE(742)] = 42070, + [SMALL_STATE(743)] = 42096, + [SMALL_STATE(744)] = 42118, + [SMALL_STATE(745)] = 42140, + [SMALL_STATE(746)] = 42162, + [SMALL_STATE(747)] = 42186, + [SMALL_STATE(748)] = 42210, + [SMALL_STATE(749)] = 42234, + [SMALL_STATE(750)] = 42258, + [SMALL_STATE(751)] = 42282, + [SMALL_STATE(752)] = 42308, + [SMALL_STATE(753)] = 42332, + [SMALL_STATE(754)] = 42356, + [SMALL_STATE(755)] = 42382, + [SMALL_STATE(756)] = 42406, + [SMALL_STATE(757)] = 42430, + [SMALL_STATE(758)] = 42449, + [SMALL_STATE(759)] = 42470, + [SMALL_STATE(760)] = 42491, + [SMALL_STATE(761)] = 42514, + [SMALL_STATE(762)] = 42535, + [SMALL_STATE(763)] = 42558, + [SMALL_STATE(764)] = 42581, + [SMALL_STATE(765)] = 42602, + [SMALL_STATE(766)] = 42625, + [SMALL_STATE(767)] = 42648, + [SMALL_STATE(768)] = 42667, + [SMALL_STATE(769)] = 42688, + [SMALL_STATE(770)] = 42709, + [SMALL_STATE(771)] = 42732, + [SMALL_STATE(772)] = 42753, + [SMALL_STATE(773)] = 42774, + [SMALL_STATE(774)] = 42795, + [SMALL_STATE(775)] = 42816, + [SMALL_STATE(776)] = 42835, + [SMALL_STATE(777)] = 42854, + [SMALL_STATE(778)] = 42877, + [SMALL_STATE(779)] = 42896, + [SMALL_STATE(780)] = 42919, + [SMALL_STATE(781)] = 42940, + [SMALL_STATE(782)] = 42961, + [SMALL_STATE(783)] = 42982, + [SMALL_STATE(784)] = 43005, + [SMALL_STATE(785)] = 43024, + [SMALL_STATE(786)] = 43043, [SMALL_STATE(787)] = 43062, - [SMALL_STATE(788)] = 43085, - [SMALL_STATE(789)] = 43104, - [SMALL_STATE(790)] = 43125, - [SMALL_STATE(791)] = 43145, - [SMALL_STATE(792)] = 43165, - [SMALL_STATE(793)] = 43183, - [SMALL_STATE(794)] = 43203, - [SMALL_STATE(795)] = 43219, - [SMALL_STATE(796)] = 43235, - [SMALL_STATE(797)] = 43255, - [SMALL_STATE(798)] = 43271, - [SMALL_STATE(799)] = 43287, - [SMALL_STATE(800)] = 43303, - [SMALL_STATE(801)] = 43323, - [SMALL_STATE(802)] = 43343, - [SMALL_STATE(803)] = 43363, - [SMALL_STATE(804)] = 43383, - [SMALL_STATE(805)] = 43403, - [SMALL_STATE(806)] = 43423, - [SMALL_STATE(807)] = 43439, - [SMALL_STATE(808)] = 43455, - [SMALL_STATE(809)] = 43475, - [SMALL_STATE(810)] = 43491, - [SMALL_STATE(811)] = 43511, - [SMALL_STATE(812)] = 43531, - [SMALL_STATE(813)] = 43549, - [SMALL_STATE(814)] = 43567, - [SMALL_STATE(815)] = 43587, - [SMALL_STATE(816)] = 43603, - [SMALL_STATE(817)] = 43619, - [SMALL_STATE(818)] = 43639, - [SMALL_STATE(819)] = 43657, - [SMALL_STATE(820)] = 43673, - [SMALL_STATE(821)] = 43689, - [SMALL_STATE(822)] = 43705, - [SMALL_STATE(823)] = 43725, - [SMALL_STATE(824)] = 43741, - [SMALL_STATE(825)] = 43757, - [SMALL_STATE(826)] = 43773, - [SMALL_STATE(827)] = 43789, - [SMALL_STATE(828)] = 43805, - [SMALL_STATE(829)] = 43823, - [SMALL_STATE(830)] = 43839, - [SMALL_STATE(831)] = 43855, - [SMALL_STATE(832)] = 43875, - [SMALL_STATE(833)] = 43895, - [SMALL_STATE(834)] = 43911, - [SMALL_STATE(835)] = 43927, - [SMALL_STATE(836)] = 43947, - [SMALL_STATE(837)] = 43965, - [SMALL_STATE(838)] = 43985, - [SMALL_STATE(839)] = 44005, - [SMALL_STATE(840)] = 44025, - [SMALL_STATE(841)] = 44041, - [SMALL_STATE(842)] = 44057, - [SMALL_STATE(843)] = 44077, - [SMALL_STATE(844)] = 44093, - [SMALL_STATE(845)] = 44109, - [SMALL_STATE(846)] = 44127, - [SMALL_STATE(847)] = 44143, - [SMALL_STATE(848)] = 44161, - [SMALL_STATE(849)] = 44181, - [SMALL_STATE(850)] = 44199, - [SMALL_STATE(851)] = 44215, - [SMALL_STATE(852)] = 44235, - [SMALL_STATE(853)] = 44251, - [SMALL_STATE(854)] = 44271, - [SMALL_STATE(855)] = 44291, - [SMALL_STATE(856)] = 44311, - [SMALL_STATE(857)] = 44329, - [SMALL_STATE(858)] = 44349, - [SMALL_STATE(859)] = 44369, - [SMALL_STATE(860)] = 44385, + [SMALL_STATE(788)] = 43083, + [SMALL_STATE(789)] = 43106, + [SMALL_STATE(790)] = 43127, + [SMALL_STATE(791)] = 43148, + [SMALL_STATE(792)] = 43168, + [SMALL_STATE(793)] = 43188, + [SMALL_STATE(794)] = 43208, + [SMALL_STATE(795)] = 43224, + [SMALL_STATE(796)] = 43240, + [SMALL_STATE(797)] = 43256, + [SMALL_STATE(798)] = 43272, + [SMALL_STATE(799)] = 43292, + [SMALL_STATE(800)] = 43310, + [SMALL_STATE(801)] = 43326, + [SMALL_STATE(802)] = 43342, + [SMALL_STATE(803)] = 43362, + [SMALL_STATE(804)] = 43380, + [SMALL_STATE(805)] = 43400, + [SMALL_STATE(806)] = 43420, + [SMALL_STATE(807)] = 43440, + [SMALL_STATE(808)] = 43458, + [SMALL_STATE(809)] = 43474, + [SMALL_STATE(810)] = 43492, + [SMALL_STATE(811)] = 43508, + [SMALL_STATE(812)] = 43524, + [SMALL_STATE(813)] = 43544, + [SMALL_STATE(814)] = 43560, + [SMALL_STATE(815)] = 43578, + [SMALL_STATE(816)] = 43594, + [SMALL_STATE(817)] = 43614, + [SMALL_STATE(818)] = 43634, + [SMALL_STATE(819)] = 43650, + [SMALL_STATE(820)] = 43666, + [SMALL_STATE(821)] = 43682, + [SMALL_STATE(822)] = 43698, + [SMALL_STATE(823)] = 43718, + [SMALL_STATE(824)] = 43734, + [SMALL_STATE(825)] = 43750, + [SMALL_STATE(826)] = 43766, + [SMALL_STATE(827)] = 43782, + [SMALL_STATE(828)] = 43798, + [SMALL_STATE(829)] = 43814, + [SMALL_STATE(830)] = 43834, + [SMALL_STATE(831)] = 43854, + [SMALL_STATE(832)] = 43872, + [SMALL_STATE(833)] = 43892, + [SMALL_STATE(834)] = 43908, + [SMALL_STATE(835)] = 43924, + [SMALL_STATE(836)] = 43942, + [SMALL_STATE(837)] = 43962, + [SMALL_STATE(838)] = 43982, + [SMALL_STATE(839)] = 43998, + [SMALL_STATE(840)] = 44018, + [SMALL_STATE(841)] = 44038, + [SMALL_STATE(842)] = 44054, + [SMALL_STATE(843)] = 44074, + [SMALL_STATE(844)] = 44094, + [SMALL_STATE(845)] = 44114, + [SMALL_STATE(846)] = 44130, + [SMALL_STATE(847)] = 44150, + [SMALL_STATE(848)] = 44168, + [SMALL_STATE(849)] = 44188, + [SMALL_STATE(850)] = 44208, + [SMALL_STATE(851)] = 44224, + [SMALL_STATE(852)] = 44240, + [SMALL_STATE(853)] = 44256, + [SMALL_STATE(854)] = 44276, + [SMALL_STATE(855)] = 44294, + [SMALL_STATE(856)] = 44314, + [SMALL_STATE(857)] = 44330, + [SMALL_STATE(858)] = 44350, + [SMALL_STATE(859)] = 44368, + [SMALL_STATE(860)] = 44388, [SMALL_STATE(861)] = 44405, - [SMALL_STATE(862)] = 44420, - [SMALL_STATE(863)] = 44437, - [SMALL_STATE(864)] = 44454, - [SMALL_STATE(865)] = 44469, - [SMALL_STATE(866)] = 44484, - [SMALL_STATE(867)] = 44501, - [SMALL_STATE(868)] = 44516, - [SMALL_STATE(869)] = 44533, - [SMALL_STATE(870)] = 44550, - [SMALL_STATE(871)] = 44567, - [SMALL_STATE(872)] = 44584, - [SMALL_STATE(873)] = 44601, - [SMALL_STATE(874)] = 44618, - [SMALL_STATE(875)] = 44635, - [SMALL_STATE(876)] = 44652, - [SMALL_STATE(877)] = 44669, - [SMALL_STATE(878)] = 44686, - [SMALL_STATE(879)] = 44703, - [SMALL_STATE(880)] = 44720, - [SMALL_STATE(881)] = 44737, - [SMALL_STATE(882)] = 44754, - [SMALL_STATE(883)] = 44771, - [SMALL_STATE(884)] = 44788, - [SMALL_STATE(885)] = 44803, - [SMALL_STATE(886)] = 44820, - [SMALL_STATE(887)] = 44837, - [SMALL_STATE(888)] = 44854, - [SMALL_STATE(889)] = 44871, - [SMALL_STATE(890)] = 44888, - [SMALL_STATE(891)] = 44905, - [SMALL_STATE(892)] = 44922, - [SMALL_STATE(893)] = 44939, - [SMALL_STATE(894)] = 44956, - [SMALL_STATE(895)] = 44973, - [SMALL_STATE(896)] = 44990, - [SMALL_STATE(897)] = 45007, - [SMALL_STATE(898)] = 45024, - [SMALL_STATE(899)] = 45041, - [SMALL_STATE(900)] = 45058, - [SMALL_STATE(901)] = 45075, - [SMALL_STATE(902)] = 45092, - [SMALL_STATE(903)] = 45109, - [SMALL_STATE(904)] = 45126, - [SMALL_STATE(905)] = 45141, - [SMALL_STATE(906)] = 45158, - [SMALL_STATE(907)] = 45175, - [SMALL_STATE(908)] = 45192, - [SMALL_STATE(909)] = 45209, - [SMALL_STATE(910)] = 45226, - [SMALL_STATE(911)] = 45243, - [SMALL_STATE(912)] = 45260, - [SMALL_STATE(913)] = 45277, - [SMALL_STATE(914)] = 45294, - [SMALL_STATE(915)] = 45311, - [SMALL_STATE(916)] = 45328, - [SMALL_STATE(917)] = 45345, - [SMALL_STATE(918)] = 45362, - [SMALL_STATE(919)] = 45379, - [SMALL_STATE(920)] = 45396, - [SMALL_STATE(921)] = 45413, - [SMALL_STATE(922)] = 45430, - [SMALL_STATE(923)] = 45447, - [SMALL_STATE(924)] = 45464, - [SMALL_STATE(925)] = 45481, - [SMALL_STATE(926)] = 45498, - [SMALL_STATE(927)] = 45515, - [SMALL_STATE(928)] = 45532, - [SMALL_STATE(929)] = 45549, - [SMALL_STATE(930)] = 45566, - [SMALL_STATE(931)] = 45583, - [SMALL_STATE(932)] = 45600, - [SMALL_STATE(933)] = 45617, - [SMALL_STATE(934)] = 45634, - [SMALL_STATE(935)] = 45649, - [SMALL_STATE(936)] = 45666, - [SMALL_STATE(937)] = 45683, - [SMALL_STATE(938)] = 45700, - [SMALL_STATE(939)] = 45717, - [SMALL_STATE(940)] = 45732, - [SMALL_STATE(941)] = 45749, - [SMALL_STATE(942)] = 45766, - [SMALL_STATE(943)] = 45783, - [SMALL_STATE(944)] = 45800, - [SMALL_STATE(945)] = 45817, - [SMALL_STATE(946)] = 45834, - [SMALL_STATE(947)] = 45851, - [SMALL_STATE(948)] = 45868, - [SMALL_STATE(949)] = 45885, + [SMALL_STATE(862)] = 44422, + [SMALL_STATE(863)] = 44439, + [SMALL_STATE(864)] = 44456, + [SMALL_STATE(865)] = 44473, + [SMALL_STATE(866)] = 44490, + [SMALL_STATE(867)] = 44507, + [SMALL_STATE(868)] = 44524, + [SMALL_STATE(869)] = 44541, + [SMALL_STATE(870)] = 44558, + [SMALL_STATE(871)] = 44575, + [SMALL_STATE(872)] = 44592, + [SMALL_STATE(873)] = 44609, + [SMALL_STATE(874)] = 44626, + [SMALL_STATE(875)] = 44641, + [SMALL_STATE(876)] = 44658, + [SMALL_STATE(877)] = 44675, + [SMALL_STATE(878)] = 44692, + [SMALL_STATE(879)] = 44709, + [SMALL_STATE(880)] = 44726, + [SMALL_STATE(881)] = 44743, + [SMALL_STATE(882)] = 44760, + [SMALL_STATE(883)] = 44777, + [SMALL_STATE(884)] = 44794, + [SMALL_STATE(885)] = 44811, + [SMALL_STATE(886)] = 44828, + [SMALL_STATE(887)] = 44845, + [SMALL_STATE(888)] = 44862, + [SMALL_STATE(889)] = 44879, + [SMALL_STATE(890)] = 44896, + [SMALL_STATE(891)] = 44913, + [SMALL_STATE(892)] = 44930, + [SMALL_STATE(893)] = 44947, + [SMALL_STATE(894)] = 44964, + [SMALL_STATE(895)] = 44981, + [SMALL_STATE(896)] = 44996, + [SMALL_STATE(897)] = 45013, + [SMALL_STATE(898)] = 45030, + [SMALL_STATE(899)] = 45047, + [SMALL_STATE(900)] = 45064, + [SMALL_STATE(901)] = 45081, + [SMALL_STATE(902)] = 45098, + [SMALL_STATE(903)] = 45115, + [SMALL_STATE(904)] = 45132, + [SMALL_STATE(905)] = 45149, + [SMALL_STATE(906)] = 45166, + [SMALL_STATE(907)] = 45183, + [SMALL_STATE(908)] = 45200, + [SMALL_STATE(909)] = 45217, + [SMALL_STATE(910)] = 45234, + [SMALL_STATE(911)] = 45251, + [SMALL_STATE(912)] = 45268, + [SMALL_STATE(913)] = 45283, + [SMALL_STATE(914)] = 45298, + [SMALL_STATE(915)] = 45315, + [SMALL_STATE(916)] = 45332, + [SMALL_STATE(917)] = 45349, + [SMALL_STATE(918)] = 45366, + [SMALL_STATE(919)] = 45383, + [SMALL_STATE(920)] = 45400, + [SMALL_STATE(921)] = 45417, + [SMALL_STATE(922)] = 45434, + [SMALL_STATE(923)] = 45451, + [SMALL_STATE(924)] = 45468, + [SMALL_STATE(925)] = 45485, + [SMALL_STATE(926)] = 45502, + [SMALL_STATE(927)] = 45519, + [SMALL_STATE(928)] = 45536, + [SMALL_STATE(929)] = 45553, + [SMALL_STATE(930)] = 45570, + [SMALL_STATE(931)] = 45587, + [SMALL_STATE(932)] = 45604, + [SMALL_STATE(933)] = 45621, + [SMALL_STATE(934)] = 45638, + [SMALL_STATE(935)] = 45655, + [SMALL_STATE(936)] = 45672, + [SMALL_STATE(937)] = 45689, + [SMALL_STATE(938)] = 45706, + [SMALL_STATE(939)] = 45721, + [SMALL_STATE(940)] = 45738, + [SMALL_STATE(941)] = 45753, + [SMALL_STATE(942)] = 45770, + [SMALL_STATE(943)] = 45787, + [SMALL_STATE(944)] = 45804, + [SMALL_STATE(945)] = 45821, + [SMALL_STATE(946)] = 45838, + [SMALL_STATE(947)] = 45855, + [SMALL_STATE(948)] = 45872, + [SMALL_STATE(949)] = 45887, [SMALL_STATE(950)] = 45902, [SMALL_STATE(951)] = 45919, [SMALL_STATE(952)] = 45936, @@ -51829,1403 +51834,1405 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(963)] = 46123, [SMALL_STATE(964)] = 46140, [SMALL_STATE(965)] = 46157, - [SMALL_STATE(966)] = 46174, - [SMALL_STATE(967)] = 46188, - [SMALL_STATE(968)] = 46202, - [SMALL_STATE(969)] = 46216, - [SMALL_STATE(970)] = 46230, - [SMALL_STATE(971)] = 46244, - [SMALL_STATE(972)] = 46258, - [SMALL_STATE(973)] = 46272, - [SMALL_STATE(974)] = 46286, - [SMALL_STATE(975)] = 46300, - [SMALL_STATE(976)] = 46314, - [SMALL_STATE(977)] = 46328, - [SMALL_STATE(978)] = 46342, - [SMALL_STATE(979)] = 46356, - [SMALL_STATE(980)] = 46370, - [SMALL_STATE(981)] = 46384, - [SMALL_STATE(982)] = 46398, - [SMALL_STATE(983)] = 46412, - [SMALL_STATE(984)] = 46426, - [SMALL_STATE(985)] = 46440, - [SMALL_STATE(986)] = 46454, - [SMALL_STATE(987)] = 46468, - [SMALL_STATE(988)] = 46482, - [SMALL_STATE(989)] = 46496, - [SMALL_STATE(990)] = 46510, - [SMALL_STATE(991)] = 46524, - [SMALL_STATE(992)] = 46538, - [SMALL_STATE(993)] = 46552, - [SMALL_STATE(994)] = 46566, - [SMALL_STATE(995)] = 46580, - [SMALL_STATE(996)] = 46594, - [SMALL_STATE(997)] = 46608, - [SMALL_STATE(998)] = 46622, - [SMALL_STATE(999)] = 46636, - [SMALL_STATE(1000)] = 46650, - [SMALL_STATE(1001)] = 46664, - [SMALL_STATE(1002)] = 46678, - [SMALL_STATE(1003)] = 46692, - [SMALL_STATE(1004)] = 46706, - [SMALL_STATE(1005)] = 46720, - [SMALL_STATE(1006)] = 46734, - [SMALL_STATE(1007)] = 46748, - [SMALL_STATE(1008)] = 46762, - [SMALL_STATE(1009)] = 46776, - [SMALL_STATE(1010)] = 46790, - [SMALL_STATE(1011)] = 46804, - [SMALL_STATE(1012)] = 46818, - [SMALL_STATE(1013)] = 46832, - [SMALL_STATE(1014)] = 46846, - [SMALL_STATE(1015)] = 46860, - [SMALL_STATE(1016)] = 46874, - [SMALL_STATE(1017)] = 46888, - [SMALL_STATE(1018)] = 46902, - [SMALL_STATE(1019)] = 46916, - [SMALL_STATE(1020)] = 46930, - [SMALL_STATE(1021)] = 46944, - [SMALL_STATE(1022)] = 46958, - [SMALL_STATE(1023)] = 46972, - [SMALL_STATE(1024)] = 46986, - [SMALL_STATE(1025)] = 47000, - [SMALL_STATE(1026)] = 47014, - [SMALL_STATE(1027)] = 47028, - [SMALL_STATE(1028)] = 47042, - [SMALL_STATE(1029)] = 47056, - [SMALL_STATE(1030)] = 47070, - [SMALL_STATE(1031)] = 47084, - [SMALL_STATE(1032)] = 47098, - [SMALL_STATE(1033)] = 47112, - [SMALL_STATE(1034)] = 47126, - [SMALL_STATE(1035)] = 47140, - [SMALL_STATE(1036)] = 47154, - [SMALL_STATE(1037)] = 47168, - [SMALL_STATE(1038)] = 47182, - [SMALL_STATE(1039)] = 47196, - [SMALL_STATE(1040)] = 47210, - [SMALL_STATE(1041)] = 47224, - [SMALL_STATE(1042)] = 47238, - [SMALL_STATE(1043)] = 47252, - [SMALL_STATE(1044)] = 47266, - [SMALL_STATE(1045)] = 47280, - [SMALL_STATE(1046)] = 47294, - [SMALL_STATE(1047)] = 47308, - [SMALL_STATE(1048)] = 47322, - [SMALL_STATE(1049)] = 47336, - [SMALL_STATE(1050)] = 47350, - [SMALL_STATE(1051)] = 47364, - [SMALL_STATE(1052)] = 47378, - [SMALL_STATE(1053)] = 47392, - [SMALL_STATE(1054)] = 47406, - [SMALL_STATE(1055)] = 47420, - [SMALL_STATE(1056)] = 47434, - [SMALL_STATE(1057)] = 47448, - [SMALL_STATE(1058)] = 47462, - [SMALL_STATE(1059)] = 47476, - [SMALL_STATE(1060)] = 47490, - [SMALL_STATE(1061)] = 47504, - [SMALL_STATE(1062)] = 47518, - [SMALL_STATE(1063)] = 47532, - [SMALL_STATE(1064)] = 47546, - [SMALL_STATE(1065)] = 47560, - [SMALL_STATE(1066)] = 47574, - [SMALL_STATE(1067)] = 47588, - [SMALL_STATE(1068)] = 47602, - [SMALL_STATE(1069)] = 47616, - [SMALL_STATE(1070)] = 47630, - [SMALL_STATE(1071)] = 47644, - [SMALL_STATE(1072)] = 47658, - [SMALL_STATE(1073)] = 47672, - [SMALL_STATE(1074)] = 47686, - [SMALL_STATE(1075)] = 47700, - [SMALL_STATE(1076)] = 47714, - [SMALL_STATE(1077)] = 47728, - [SMALL_STATE(1078)] = 47742, - [SMALL_STATE(1079)] = 47756, - [SMALL_STATE(1080)] = 47770, - [SMALL_STATE(1081)] = 47784, - [SMALL_STATE(1082)] = 47798, - [SMALL_STATE(1083)] = 47812, - [SMALL_STATE(1084)] = 47826, - [SMALL_STATE(1085)] = 47840, - [SMALL_STATE(1086)] = 47854, - [SMALL_STATE(1087)] = 47868, - [SMALL_STATE(1088)] = 47882, - [SMALL_STATE(1089)] = 47896, - [SMALL_STATE(1090)] = 47910, - [SMALL_STATE(1091)] = 47924, - [SMALL_STATE(1092)] = 47938, - [SMALL_STATE(1093)] = 47952, - [SMALL_STATE(1094)] = 47966, - [SMALL_STATE(1095)] = 47980, - [SMALL_STATE(1096)] = 47994, - [SMALL_STATE(1097)] = 48008, - [SMALL_STATE(1098)] = 48022, - [SMALL_STATE(1099)] = 48036, - [SMALL_STATE(1100)] = 48050, - [SMALL_STATE(1101)] = 48064, - [SMALL_STATE(1102)] = 48078, - [SMALL_STATE(1103)] = 48092, - [SMALL_STATE(1104)] = 48106, - [SMALL_STATE(1105)] = 48120, - [SMALL_STATE(1106)] = 48134, - [SMALL_STATE(1107)] = 48148, - [SMALL_STATE(1108)] = 48162, - [SMALL_STATE(1109)] = 48176, - [SMALL_STATE(1110)] = 48190, - [SMALL_STATE(1111)] = 48204, - [SMALL_STATE(1112)] = 48218, - [SMALL_STATE(1113)] = 48232, - [SMALL_STATE(1114)] = 48246, - [SMALL_STATE(1115)] = 48260, - [SMALL_STATE(1116)] = 48274, - [SMALL_STATE(1117)] = 48288, - [SMALL_STATE(1118)] = 48302, - [SMALL_STATE(1119)] = 48316, - [SMALL_STATE(1120)] = 48330, - [SMALL_STATE(1121)] = 48344, - [SMALL_STATE(1122)] = 48358, - [SMALL_STATE(1123)] = 48372, - [SMALL_STATE(1124)] = 48386, - [SMALL_STATE(1125)] = 48400, - [SMALL_STATE(1126)] = 48414, - [SMALL_STATE(1127)] = 48428, - [SMALL_STATE(1128)] = 48442, - [SMALL_STATE(1129)] = 48456, - [SMALL_STATE(1130)] = 48470, - [SMALL_STATE(1131)] = 48484, - [SMALL_STATE(1132)] = 48498, - [SMALL_STATE(1133)] = 48512, - [SMALL_STATE(1134)] = 48526, - [SMALL_STATE(1135)] = 48540, - [SMALL_STATE(1136)] = 48554, - [SMALL_STATE(1137)] = 48568, - [SMALL_STATE(1138)] = 48582, - [SMALL_STATE(1139)] = 48596, - [SMALL_STATE(1140)] = 48610, - [SMALL_STATE(1141)] = 48624, - [SMALL_STATE(1142)] = 48638, - [SMALL_STATE(1143)] = 48652, - [SMALL_STATE(1144)] = 48666, - [SMALL_STATE(1145)] = 48680, - [SMALL_STATE(1146)] = 48694, - [SMALL_STATE(1147)] = 48708, - [SMALL_STATE(1148)] = 48722, - [SMALL_STATE(1149)] = 48736, - [SMALL_STATE(1150)] = 48750, - [SMALL_STATE(1151)] = 48764, - [SMALL_STATE(1152)] = 48778, - [SMALL_STATE(1153)] = 48792, - [SMALL_STATE(1154)] = 48806, - [SMALL_STATE(1155)] = 48820, - [SMALL_STATE(1156)] = 48834, - [SMALL_STATE(1157)] = 48848, - [SMALL_STATE(1158)] = 48862, - [SMALL_STATE(1159)] = 48876, - [SMALL_STATE(1160)] = 48890, - [SMALL_STATE(1161)] = 48904, - [SMALL_STATE(1162)] = 48918, - [SMALL_STATE(1163)] = 48932, - [SMALL_STATE(1164)] = 48946, - [SMALL_STATE(1165)] = 48960, - [SMALL_STATE(1166)] = 48974, - [SMALL_STATE(1167)] = 48988, - [SMALL_STATE(1168)] = 49002, - [SMALL_STATE(1169)] = 49016, - [SMALL_STATE(1170)] = 49030, - [SMALL_STATE(1171)] = 49044, - [SMALL_STATE(1172)] = 49048, - [SMALL_STATE(1173)] = 49052, + [SMALL_STATE(966)] = 46171, + [SMALL_STATE(967)] = 46185, + [SMALL_STATE(968)] = 46199, + [SMALL_STATE(969)] = 46213, + [SMALL_STATE(970)] = 46227, + [SMALL_STATE(971)] = 46241, + [SMALL_STATE(972)] = 46255, + [SMALL_STATE(973)] = 46269, + [SMALL_STATE(974)] = 46283, + [SMALL_STATE(975)] = 46297, + [SMALL_STATE(976)] = 46311, + [SMALL_STATE(977)] = 46325, + [SMALL_STATE(978)] = 46339, + [SMALL_STATE(979)] = 46353, + [SMALL_STATE(980)] = 46367, + [SMALL_STATE(981)] = 46381, + [SMALL_STATE(982)] = 46395, + [SMALL_STATE(983)] = 46409, + [SMALL_STATE(984)] = 46423, + [SMALL_STATE(985)] = 46437, + [SMALL_STATE(986)] = 46451, + [SMALL_STATE(987)] = 46465, + [SMALL_STATE(988)] = 46479, + [SMALL_STATE(989)] = 46493, + [SMALL_STATE(990)] = 46507, + [SMALL_STATE(991)] = 46521, + [SMALL_STATE(992)] = 46535, + [SMALL_STATE(993)] = 46549, + [SMALL_STATE(994)] = 46563, + [SMALL_STATE(995)] = 46577, + [SMALL_STATE(996)] = 46591, + [SMALL_STATE(997)] = 46605, + [SMALL_STATE(998)] = 46619, + [SMALL_STATE(999)] = 46633, + [SMALL_STATE(1000)] = 46647, + [SMALL_STATE(1001)] = 46661, + [SMALL_STATE(1002)] = 46675, + [SMALL_STATE(1003)] = 46689, + [SMALL_STATE(1004)] = 46703, + [SMALL_STATE(1005)] = 46717, + [SMALL_STATE(1006)] = 46731, + [SMALL_STATE(1007)] = 46745, + [SMALL_STATE(1008)] = 46759, + [SMALL_STATE(1009)] = 46773, + [SMALL_STATE(1010)] = 46787, + [SMALL_STATE(1011)] = 46801, + [SMALL_STATE(1012)] = 46815, + [SMALL_STATE(1013)] = 46829, + [SMALL_STATE(1014)] = 46843, + [SMALL_STATE(1015)] = 46857, + [SMALL_STATE(1016)] = 46871, + [SMALL_STATE(1017)] = 46885, + [SMALL_STATE(1018)] = 46899, + [SMALL_STATE(1019)] = 46913, + [SMALL_STATE(1020)] = 46927, + [SMALL_STATE(1021)] = 46941, + [SMALL_STATE(1022)] = 46955, + [SMALL_STATE(1023)] = 46969, + [SMALL_STATE(1024)] = 46983, + [SMALL_STATE(1025)] = 46997, + [SMALL_STATE(1026)] = 47011, + [SMALL_STATE(1027)] = 47025, + [SMALL_STATE(1028)] = 47039, + [SMALL_STATE(1029)] = 47053, + [SMALL_STATE(1030)] = 47067, + [SMALL_STATE(1031)] = 47081, + [SMALL_STATE(1032)] = 47095, + [SMALL_STATE(1033)] = 47109, + [SMALL_STATE(1034)] = 47123, + [SMALL_STATE(1035)] = 47137, + [SMALL_STATE(1036)] = 47151, + [SMALL_STATE(1037)] = 47165, + [SMALL_STATE(1038)] = 47179, + [SMALL_STATE(1039)] = 47193, + [SMALL_STATE(1040)] = 47207, + [SMALL_STATE(1041)] = 47221, + [SMALL_STATE(1042)] = 47235, + [SMALL_STATE(1043)] = 47249, + [SMALL_STATE(1044)] = 47263, + [SMALL_STATE(1045)] = 47277, + [SMALL_STATE(1046)] = 47291, + [SMALL_STATE(1047)] = 47305, + [SMALL_STATE(1048)] = 47319, + [SMALL_STATE(1049)] = 47333, + [SMALL_STATE(1050)] = 47347, + [SMALL_STATE(1051)] = 47361, + [SMALL_STATE(1052)] = 47375, + [SMALL_STATE(1053)] = 47389, + [SMALL_STATE(1054)] = 47403, + [SMALL_STATE(1055)] = 47417, + [SMALL_STATE(1056)] = 47431, + [SMALL_STATE(1057)] = 47445, + [SMALL_STATE(1058)] = 47459, + [SMALL_STATE(1059)] = 47473, + [SMALL_STATE(1060)] = 47487, + [SMALL_STATE(1061)] = 47501, + [SMALL_STATE(1062)] = 47515, + [SMALL_STATE(1063)] = 47529, + [SMALL_STATE(1064)] = 47543, + [SMALL_STATE(1065)] = 47557, + [SMALL_STATE(1066)] = 47571, + [SMALL_STATE(1067)] = 47585, + [SMALL_STATE(1068)] = 47599, + [SMALL_STATE(1069)] = 47613, + [SMALL_STATE(1070)] = 47627, + [SMALL_STATE(1071)] = 47641, + [SMALL_STATE(1072)] = 47655, + [SMALL_STATE(1073)] = 47669, + [SMALL_STATE(1074)] = 47683, + [SMALL_STATE(1075)] = 47697, + [SMALL_STATE(1076)] = 47711, + [SMALL_STATE(1077)] = 47725, + [SMALL_STATE(1078)] = 47739, + [SMALL_STATE(1079)] = 47753, + [SMALL_STATE(1080)] = 47767, + [SMALL_STATE(1081)] = 47781, + [SMALL_STATE(1082)] = 47795, + [SMALL_STATE(1083)] = 47809, + [SMALL_STATE(1084)] = 47823, + [SMALL_STATE(1085)] = 47837, + [SMALL_STATE(1086)] = 47851, + [SMALL_STATE(1087)] = 47865, + [SMALL_STATE(1088)] = 47879, + [SMALL_STATE(1089)] = 47893, + [SMALL_STATE(1090)] = 47907, + [SMALL_STATE(1091)] = 47921, + [SMALL_STATE(1092)] = 47935, + [SMALL_STATE(1093)] = 47949, + [SMALL_STATE(1094)] = 47963, + [SMALL_STATE(1095)] = 47977, + [SMALL_STATE(1096)] = 47991, + [SMALL_STATE(1097)] = 48005, + [SMALL_STATE(1098)] = 48019, + [SMALL_STATE(1099)] = 48033, + [SMALL_STATE(1100)] = 48047, + [SMALL_STATE(1101)] = 48061, + [SMALL_STATE(1102)] = 48075, + [SMALL_STATE(1103)] = 48089, + [SMALL_STATE(1104)] = 48103, + [SMALL_STATE(1105)] = 48117, + [SMALL_STATE(1106)] = 48131, + [SMALL_STATE(1107)] = 48145, + [SMALL_STATE(1108)] = 48159, + [SMALL_STATE(1109)] = 48173, + [SMALL_STATE(1110)] = 48187, + [SMALL_STATE(1111)] = 48201, + [SMALL_STATE(1112)] = 48215, + [SMALL_STATE(1113)] = 48229, + [SMALL_STATE(1114)] = 48243, + [SMALL_STATE(1115)] = 48257, + [SMALL_STATE(1116)] = 48271, + [SMALL_STATE(1117)] = 48285, + [SMALL_STATE(1118)] = 48299, + [SMALL_STATE(1119)] = 48313, + [SMALL_STATE(1120)] = 48327, + [SMALL_STATE(1121)] = 48341, + [SMALL_STATE(1122)] = 48355, + [SMALL_STATE(1123)] = 48369, + [SMALL_STATE(1124)] = 48383, + [SMALL_STATE(1125)] = 48397, + [SMALL_STATE(1126)] = 48411, + [SMALL_STATE(1127)] = 48425, + [SMALL_STATE(1128)] = 48439, + [SMALL_STATE(1129)] = 48453, + [SMALL_STATE(1130)] = 48467, + [SMALL_STATE(1131)] = 48481, + [SMALL_STATE(1132)] = 48495, + [SMALL_STATE(1133)] = 48509, + [SMALL_STATE(1134)] = 48523, + [SMALL_STATE(1135)] = 48537, + [SMALL_STATE(1136)] = 48551, + [SMALL_STATE(1137)] = 48565, + [SMALL_STATE(1138)] = 48579, + [SMALL_STATE(1139)] = 48593, + [SMALL_STATE(1140)] = 48607, + [SMALL_STATE(1141)] = 48621, + [SMALL_STATE(1142)] = 48635, + [SMALL_STATE(1143)] = 48649, + [SMALL_STATE(1144)] = 48663, + [SMALL_STATE(1145)] = 48677, + [SMALL_STATE(1146)] = 48691, + [SMALL_STATE(1147)] = 48705, + [SMALL_STATE(1148)] = 48719, + [SMALL_STATE(1149)] = 48733, + [SMALL_STATE(1150)] = 48747, + [SMALL_STATE(1151)] = 48761, + [SMALL_STATE(1152)] = 48775, + [SMALL_STATE(1153)] = 48789, + [SMALL_STATE(1154)] = 48803, + [SMALL_STATE(1155)] = 48817, + [SMALL_STATE(1156)] = 48831, + [SMALL_STATE(1157)] = 48845, + [SMALL_STATE(1158)] = 48859, + [SMALL_STATE(1159)] = 48873, + [SMALL_STATE(1160)] = 48887, + [SMALL_STATE(1161)] = 48901, + [SMALL_STATE(1162)] = 48915, + [SMALL_STATE(1163)] = 48929, + [SMALL_STATE(1164)] = 48943, + [SMALL_STATE(1165)] = 48957, + [SMALL_STATE(1166)] = 48971, + [SMALL_STATE(1167)] = 48985, + [SMALL_STATE(1168)] = 48999, + [SMALL_STATE(1169)] = 49013, + [SMALL_STATE(1170)] = 49027, + [SMALL_STATE(1171)] = 49041, + [SMALL_STATE(1172)] = 49045, + [SMALL_STATE(1173)] = 49049, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(91), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(777), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(712), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(773), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(819), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(174), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(774), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1033), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1115), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(778), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(116), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1060), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(722), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1149), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(732), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(742), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1169), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1116), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(127), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(92), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(787), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(713), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(769), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(859), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(136), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(780), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1154), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1150), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(781), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(112), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1145), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(721), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1127), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(734), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(743), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1110), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1098), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(178), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(990), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(90), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(783), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(709), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(766), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(852), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(189), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(762), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1036), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1118), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(779), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(114), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1062), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(721), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1119), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(733), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(740), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1109), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1120), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(161), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(76), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(760), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(715), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(763), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(850), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(177), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(765), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1169), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1166), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(770), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(113), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1165), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(719), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1164), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(735), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(742), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1163), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1162), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(187), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(1076), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 33), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 1), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_tuning, 1), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(84), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(197), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(216), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(121), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(710), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(143), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(130), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(119), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(120), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(855), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(789), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(757), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(142), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1029), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(671), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(853), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 6), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 4), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(938), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(972), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 16), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 6), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 16), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 5), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 5), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 25), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 34), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 33), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 26), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 26), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 5), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 25), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 17), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 17), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 5), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 25), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 17), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 25), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 26), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 33), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(82), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(220), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(221), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(127), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(710), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(136), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(134), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(130), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(129), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(859), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(759), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(773), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(123), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(1151), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(671), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(791), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(869), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 4), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 6), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 16), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(1105), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 16), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 5), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 6), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 5), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 25), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 17), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 25), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 17), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 26), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 5), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 26), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 33), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 5), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 34), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 25), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 34), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 26), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 25), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 26), [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 17), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 34), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 26), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 34), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 17), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(868), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(864), [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 4), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 9), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 12), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(913), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(959), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_argument_repeat1, 2), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(874), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(981), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), SHIFT_REPEAT(943), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 7, .production_id = 12), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 7, .production_id = 12), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 8, .production_id = 12), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 8, .production_id = 12), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), SHIFT_REPEAT(918), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 6, .production_id = 12), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 6, .production_id = 12), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_then_statement, 4, .production_id = 12), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_then_statement, 4, .production_id = 12), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_if_statement, 8, .production_id = 22), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_if_statement, 8, .production_id = 22), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_if_statement, 7, .production_id = 22), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_if_statement, 7, .production_id = 22), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(985), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 10), SHIFT_REPEAT(915), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 6, .production_id = 12), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 6, .production_id = 12), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 8, .production_id = 12), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_do_statement, 7, .production_id = 12), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), SHIFT_REPEAT(947), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 2), SHIFT_REPEAT(865), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 7, .production_id = 12), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_do_statement, 8, .production_id = 12), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_then_statement, 4, .production_id = 12), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_then_statement, 4, .production_id = 12), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_if_statement, 7, .production_id = 22), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_if_statement, 8, .production_id = 22), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_statement, 4), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_statement, 4), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 1), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_statement, 5), [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_statement, 5), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_statement, 4), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_do_statement, 4), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_do_statement_repeat1, 1), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_do_statement_repeat1, 1), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_if_statement, 7, .production_id = 22), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_do_if_statement, 8, .production_id = 22), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_then_statement, 2), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_then_statement, 2), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 22), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 22), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 27), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 27), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 7), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 7), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 23), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 23), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_statement, 1), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__loop_statement, 1), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 31), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 31), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement, 1), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_statement, 1), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction_statement, 4), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction_statement, 4), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 7), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 7), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 7), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 7), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 15), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 15), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 15), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 15), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 38), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 39), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 38), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 15), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 39), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 37), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 38), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 15), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 28), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 28), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 39), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 35), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 35), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 15), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 15), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 37), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 31), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 38), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 19), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 19), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 20), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 20), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 23), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 23), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 31), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 31), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 15), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 37), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 15), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 15), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 37), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 15), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 38), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 15), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 15), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 31), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 37), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 39), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 15), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 30), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 30), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 15), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 15), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 38), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 37), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 39), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 15), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 29), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 29), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 38), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 39), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 28), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 38), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 27), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 15), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 28), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 7), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 27), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 23), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 20), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 19), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction_statement, 5), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, .production_id = 22), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_then_statement, 5, .production_id = 12), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 15), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_then_statement, 5, .production_id = 12), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 7), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, .production_id = 22), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction_statement, 5), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 19), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 20), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 23), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(181), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(625), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1044), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(922), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(929), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 18), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(917), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 18), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_do_statement_repeat1, 1), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_statement, 1), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 20), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 15), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 15), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 19), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction_statement, 4), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction_statement, 4), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_then_statement, 2), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_then_statement, 2), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, .production_id = 22), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, .production_id = 22), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 6), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 6), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 27), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 27), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement, 1), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 23), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 23), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_statement, 1), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__loop_statement, 1), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 31), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 31), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transaction_statement, 5), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 7), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 7), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 15), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 15), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, .production_id = 22), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 7), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 7), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 15), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 15), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_then_statement, 5, .production_id = 12), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 15), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 28), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 28), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 30), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 30), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 35), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 35), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 15), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 15), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 20), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 19), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 19), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 20), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 23), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 23), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 31), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 31), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 15), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 15), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 15), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 37), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 37), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 38), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 39), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 38), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 29), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 29), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 15), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 15), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_then_statement, 5, .production_id = 12), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 15), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 28), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 28), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 39), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 37), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 38), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 15), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 38), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 38), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 39), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 27), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 27), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 37), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 31), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 31), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 37), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 39), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 15), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, .production_id = 22), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transaction_statement, 5), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 38), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 37), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 39), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 15), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 38), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 39), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 38), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 7), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 7), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 19), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 20), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 23), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 23), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 15), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 15), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 7), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 7), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(181), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(629), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1074), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(878), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(917), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 18), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 18), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(963), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(726), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(729), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(731), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(718), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(719), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(730), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(625), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1044), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 16), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 6), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 16), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 18), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 6), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_repeat1, 2), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 13), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_repeat1, 2), SHIFT_REPEAT(720), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(763), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(984), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(762), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(1048), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(82), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 21), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(135), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(745), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(841), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 2), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 2), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 4, .production_id = 24), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 24), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(815), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 2), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 1), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_argument_repeat1, 2), SHIFT_REPEAT(188), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(666), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_body, 1), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 36), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(785), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 2, .production_id = 21), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 21), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_order, 1), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 32), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_mode, 1), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(717), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(724), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(729), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(722), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(726), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 14), SHIFT_REPEAT(716), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(629), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1074), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 16), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 18), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 6), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 16), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 6), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_repeat1, 2), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_repeat1, 2), SHIFT_REPEAT(720), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2, .production_id = 13), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(775), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(1108), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(781), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(752), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(1090), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(192), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(86), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 21), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 2), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 2), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 4, .production_id = 24), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 24), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(808), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(795), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 2), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(667), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(774), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 36), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_argument_repeat1, 2), SHIFT_REPEAT(163), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_order, 1), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sort_column, 2, .production_id = 21), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 21), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 32), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_mode, 1), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2435] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index af6bc9a..4698e02 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -1236,26 +1236,27 @@ END CASE. (source_code (case_statement (identifier) - (case_when_branch - (double_quoted_string) - (do_block - (body - (variable_assignment - (assignment - (identifier) - (number_literal))) - (variable_assignment - (assignment - (identifier) - (number_literal)))))) - (case_when_branch - (double_quoted_string) - (variable_assignment - (assignment - (identifier) - (number_literal)))) - (case_otherwise_branch - (variable_assignment - (assignment - (identifier) - (number_literal)))))) + (case_body + (case_when_branch + (double_quoted_string) + (do_block + (body + (variable_assignment + (assignment + (identifier) + (number_literal))) + (variable_assignment + (assignment + (identifier) + (number_literal)))))) + (case_when_branch + (double_quoted_string) + (variable_assignment + (assignment + (identifier) + (number_literal)))) + (case_otherwise_branch + (variable_assignment + (assignment + (identifier) + (number_literal)))))))